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
Move platinum coin from right hand to backpack
#1
Hey,
does anyone have script which check if right hand holds platinum coins and move them to desired backpack?
im hunting with spear and bot and when i have spear and bot change gold to plat  then i have trouble to switch to bow again cause of occupied hand with plat coins

#2
Hello.

This should work. It will check and move platinum coins from right hand to a red backpack.
local right_hand = rhand()
if right_hand.id == 3035 then
     moveitems(right_hand.id, 'red backpack', 'rhand', 100)
     wait(500, 800)
end

Or this, to move any item from your right hand to a red backpack.
local right_hand = rhand()
if right_hand.id > 0 then
     moveitems(right_hand.id, 'red backpack', 'rhand', 100)
     wait(500, 800)
end

Or this, to move any item to a red backpack, except a specific one (ID: 1234).
local right_hand = rhand()
if right_hand.id > 0 and right_hand.id ~= 1234 then
     moveitems(right_hand.id, 'red backpack', 'rhand', 100)
     wait(500, 800)
end



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016