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 AMMO = 'burst arrow'
local AMMO_COUNT = 100 -- Make ammo when count lower than this.
local AMMO_CAP = 100 -- Make ammo when cap is higher.
local AMMO_SELL = 'exevo con flam'
local AMMO_SPELL_MANA = 120
if itemcount(AMMO, '', true) <= AMMO_COUNT and cap() >= AMMO_CAP and mp() >= AMMO_SPELL_MANA and cancast() then
cast(AMMO_SELL)
wait(1000)
stackitems()
wait(800)
end