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 = 1294 -- 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
Reply

#2
I dont know what i am doing wrong,, where do i enter this script so that its constantly working? it only works if i enter it manually under the console part, but it will only work once.
Reply

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.

Hello.

Console runs the script only once.
If you wanna let the script constantly working then use Persistents. It will work from time to time. e.g.: every 1s, every 100ms, etc.
Reply

#4
i dont get it working either, i do not know what im doing wrong.. im training on my friend and it would be lovly to take the smallstones on crossair all the time
Reply

#5
|Only Registered members can see download links. | Click here to buy subscription or here to register.

Hello.

Make sure that:
1. The small stone id is 1294 as it's in the script;
2. You setup BACKPACK_WEAPON and BACKPACK_STONES correctly;
3. You are running it on Persistents, not on Console.
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016