Abrir Poxima Bag

Descrição

Abrir Proxima bag quando sua bag estiver cheia.

Autor:

                
1
2
3
4
5
6
7
8
9
10
11
12
macro(1000, "Abrir proxima Bag", function() local containers = getContainers() for i, container in pairs(containers) do if container:getItemsCount() == container:getCapacity() then for _, item in ipairs(container:getItems()) do if item:isContainer() then g_game.open(item, container) end end end end end)