When the inventory is full, i want the bot to open the rented bank and move the items inside the bag6 to the bank.
This is what i tryed to do:
Code: Select all
function BankMove()
if inventory:itemTotalCount(0) == 0 then
sendMacro("OpenBank()"); yrest(2000);
item = IDUNNOWHATTUPUTHERE
item:moveTo("bank");
end
end
end