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 Switch between WEAPON and Small Stone
#1
Switch between WEAPON and Small Stone
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 -- DONT CHANGE THIS LINE



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

keywords: switch weapon, switch ammo, stone, small stone, weapon and small stone, weapon and ammo
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016