So far, I got the bot to recognize the new slots but I still can't get it to transfer item shop items to those new slots. I have edited bank, inventory and item.lua from classes folder.
These are the changes I made:
-- changed all 200 to 300 in bank.lua
-- edited function getInventoryRange in inventory.lua
added these lines:
Code: Select all
elseif rangeLower == "isbank" then
return 201, 300, "bank"
elseif rangeLower == "bank" or rangeLower == "banks" then
return 1, 300, "bank"Code: Select all
-- Check if itemshop item
if bag == "isbank" and not self.ItemShopItem then
-- Item is not itemshop item. Cannot be put in itemshop bank
return
endCode: Select all
i = inventory:findItem("Advanced Armor Driller","itemshop") yrest(1000) if i then i:moveTo("isbank") end