Reopen Backpack
#35
First will auto open on a timer
Second will auto open when first container closes.
Second will auto open when first container closes.
macro(1000, function()
bpItem = getBack()
bp = getContainer(0)
if not bp and bpItem ~= nil then g_game.open(bpItem) end
end)
- remove | + add
onContainerClose(function(container)
bpItem = getBack()
if container:getId() == 0 and bpItem ~= nil then
g_game.open(bpItem)
end
end)
- remove | + add
26 May 2021