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.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Exevo pan and Uh maker together to keep eat food without buy
#1
Exevo pan and Uh maker together to keep eat food without buy
Reply

#2
I'm not sure what you mean or need.

Make UHs using runemaker and use this script to make food.
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
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016