Since in my experience it is not possible to stack backpacks with mana potions i made these macro's. After buying mana's the will sort them into other backpacks.
#Moves potion from backpack 0 to backpack 2#
Container.Item.ID(0, 0)==268 (checks if first slot of backpack 0 is item ID 268)
Container.Item.ID(1, 19)==0 (checks if last slot of backpack 1 is item ID 268)
Container.Item.Move(0, 0, 1, 100) (moves item of first slot of first backpack to second backpack)
#Moves potion from backpack 0 to backpack 3# (for second backpack mana)
"Move mana 2"
Container.Item.ID(1, 19)==268
Container.Item.ID(0, 0)==268
Container.Item.Move(0, 0, 2, 100)
I have not found anyone using these macro commands here so i hope people find this usefull.
#Moves potion from backpack 0 to backpack 2#
Container.Item.ID(0, 0)==268 (checks if first slot of backpack 0 is item ID 268)
Container.Item.ID(1, 19)==0 (checks if last slot of backpack 1 is item ID 268)
Container.Item.Move(0, 0, 1, 100) (moves item of first slot of first backpack to second backpack)
#Moves potion from backpack 0 to backpack 3# (for second backpack mana)
"Move mana 2"
Container.Item.ID(1, 19)==268
Container.Item.ID(0, 0)==268
Container.Item.Move(0, 0, 2, 100)
I have not found anyone using these macro commands here so i hope people find this usefull.