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
refill spears from backpack to hand
#1
need help in refill spears to hand from backpack for paladin


local AMMO = '3277'
local AMMO_CONTAINER = 'purple backpack'
local AMMO_QUIVER = 'left hand'

if (AMMO) <2 then
moveitems(AMMO, AMMO_CONTAINER, AMMO_QUIVER, 10)
wait(400, 600)
end

this wont work
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Sad" title="Sad" class="smilie smilie_8" />

Core:Lua:ExecuteScript
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Big Grin" title="Big Grin" class="smilie smilie_4" />oString:refill spear: 5: attempt to compare string with number

i meet this problem

#2
Hello.

That's because you made some bad changes, use the original script and just change the variables values.

#3
i made from other post and works. i go check it on hunting
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Smile" title="Smile" class="smilie smilie_1" />

local ITEM_ID = 3277 -- Item id.
local COUNT = 2 -- When item count on hand lower than this then move more.

local leftHand = lhand()
if leftHand.id == 0 or (leftHand.id == ITEM_ID and leftHand.count < COUNT) then
moveitems(ITEM_ID, 'lhand', '', 9)
wait(300, 500)
end



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016