Hi, this doesn't seem to work for some reason.. can someone pls tell me what's wrong? It's basically just a macro I pulled off a forum that is supposed to move a certain item to a specific bag slot.
Error: attempt to call global `GetContainerItemID' (a nil value)
String: for b=0,4 do for s=1,GetContainerNumSlots(b...
Count: 5
This is the error I get (this macro worked just fine for whoever used it in 2011, and afaik everything used in this macro existed back in 1.12 as well)
/run for b=0,4 do for s=1,GetContainerNumSlots(b) do local i=GetContainerItemID(b,s)if i then local n=GetItemInfo(i)if n=="ITEM"then PickupContainerItem(b,s)PickupContainerItem(bag,slot of choice)end end end end