Abrir Bag
Abrir bag ao entrar no jogo.
Autor:
local function openFromEmpty()
containers = getContainers()
if #containers < 1 and containers[0] == nil then
bpItem = getBack()
if bpItem ~= nil then
g_game.open(bpItem)
end
end
end
openFromEmpty()
macro(8000, "Abrir Bag ao Logar", function()
containers = getContainers()
if #containers < 1 and containers[0] == nil then
openFromEmpty()
return
end
end)