Everyone who has never used our Bots before, can test each one for 2 days without any limitation. The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons). If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.
local Min_Amount = 5 -- Min amount of food to consider casting exevo pan to make foods.
local Foods_Ids = { 3585, 3592, 3607, 3582, 3577, 3600 } -- Foods ids
local containers = getcontainers()
local food_count = 0
for _, container in ipairs(containers) do
if container.open and container.usedslots > 0 then
for __, item in ipairs(container.items) do
if table.find(Foods_Ids, item.id) ~= nil then
food_count = food_count + item.count
end
end
end
end
if food_count <= Min_Amount and cancast() and mp() >= 30 then
cast('exevo pan')
wait(1000)
end