Log in

View Full Version : How to move items from main bp to other bps



nmmoore
06-18-2016, 01:45 AM
as the title says.. i need to move mana potions to the mana bp and crystalline arrows to the ammo bp.. how do i do this?

bladeandsoulguide
07-02-2016, 07:06 AM
local backpackList = {"Purple Backpack", "Red Backpack"} -- List of Backpacks you will have open
local supplyBp = "Green Backpack" -- Backpack to move the items to
local supplyList = {"Mana Potion"} -- List of Supply Items to move

for _, BP in ipairs(backpackList) do
for _, SUPPLY in ipairs(supplyList) do
while (itemcount("mana potion", supplyBp) < 100) do
moveitems(SUPPLY, BP, supplyBp, 100)
wait(500,800)
end
end
end