Pro pessoal que tem muita BP pra abrir, fiz um script pra automatizar o processo.
1) Deixar o Inbox aberto.
2) Configurar o VBot pra puxar as gemas pra alguma BP.
3) Ter uma Money Rune.
https://imgur.com/a/BlEmj5L
macro(2000, "Organiza Gemas", function()
for i, container in pairs(getContainers()) do
if container:getContainerItem():getId() == 8860 then
items = container:getItems()
if #items==0 then
item2 = findItem(8860)
if (item2~=nil) then
useWith(3193,item2)
end
else
return
end
end
end
for i, container in pairs(getContainers()) do
if container:getContainerItem():getId() == 12902 then
for j, item in pairs(container:getItems()) do
if item:getId() == 8860 then
g_game.open(item)
return
end
end
end
end
end)
By
Show Show · Posted