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
FREE Equip/Unequip Small Stone and Weapon
#1
local WEAPON = 'serpent sword' -- IT MUST BE ON LEFT HAND (<<<)
local BACKPACK_WEAPON = 'red backpack' -- Backpack that will save the weapon.

local BACKPACK_STONES = 'red backpack' -- Backpack that will save the stones.
local STONES_COUNT = 3 -- Minimum amount to move stones to hand if you are using weapon.
local STONES_ID = 1781 -- Small stone id.


local WEAPON_ID = itemid(WEAPON) -- DONT CHANGE THIS LINE


local left_hand = lhand()

if left_hand.id == 0 then
    if itemcount(STONES_ID, BACKPACK_STONES) >= STONES_COUNT then
        moveitems(STONES_ID, 'lhand', BACKPACK_STONES)
        wait(800)
    else
        moveitems(WEAPON_ID, 'lhand')
        wait(800)
    end
elseif left_hand.id == STONES_ID and itemcount(STONES_ID, BACKPACK_STONES) >= 1 then
    moveitems(STONES_ID, 'lhand', BACKPACK_STONES)
    wait(800)
elseif left_hand.id ~= STONES_ID and itemcount(STONES_ID, BACKPACK_STONES) >= STONES_COUNT then
    moveitems(left_hand.id, BACKPACK_WEAPON, 'lhand')
    wait(800)
    moveitems(STONES_ID, 'lhand', BACKPACK_STONES)
    wait(800)
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016