Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Weapons change when training
#1
Hello i need action that will change from my knife to other weapon when some1 lure scarab,lions,wasp,scorpion on darashia while training

#2
local KNIFE_ID = 1234 -- Knife id.
local WEAPON_ID = 1234 -- Strong weapon id.
local Monsters = { 'Scarab', 'Lion', 'Wasp', 'Scorpion' }


if maround(7, table.unpack(Monsters)) > 0 then
    local left_hand = lhand()
    if left_hand.id == 0 or left_hand.id ~= WEAPON_ID then
        moveitems(WEAPON_ID, 'lhand', '', 100)
        wait(500, 800)
    end
else
    local left_hand = lhand()
    if left_hand.id == 0 or left_hand.id ~= KNIFE_ID then
        moveitems(KNIFE_ID, 'lhand', '', 100)
        wait(500, 800)
    end
end



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016