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
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.