Evolunia Autoloot clear/add
#2
local lists = {
["Rerolls"] = {
"speed reroll token",
"regeneration reroll token",
"damage reroll token",
"max health and mana reroll token"
},
["Golden"] = {
"Golden Armor",
"Golden Legs",
},
}
UI.Separator()
UI.Label("Auto Loot List:")
for n, items in pairs(lists) do
UI.Button(n, function()
local delay = 100
say("!autoloot clear")
for _, item in pairs(items) do
delay = delay + 100
schedule(delay, function() say('!autoloot add, '..item) end)
end
end)
end
- remove | + add
01 Jan 2020