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 attacked_creatured = attacked()
if attacked_creatured.id > 0 and attacked_creatured.hppc > 0 and attacked_creatured.id ~= LAST_ID and cancast() then
useitemoncreature(RUNE, attacked_creature.id)
wait(100, 300)
end
local RUNE = 'sudden death rune'
local MAX_SHOTS = 2
if LAST_MONSTER == nil then
LAST_MONSTER = { id = 0, attempts = 0 }
end
local attacked_creatured = attacked()
if attacked_creatured.id > 0 and attacked_creatured.hppc > 0 and (attacked_creatured.id ~= LAST_MONSTER.id or LAST_MONSTER.attempts < MAX_SHOTS) and cancast() then
useitemoncreature(RUNE, attacked_creature.id)
wait(100, 300)
if attacked_creatured.id ~= LAST_MONSTER.id then
LAST_MONSTER.id = attacked_creatured.id
LAST_MONSTER.attempts = 1
else
LAST_MONSTER.attempts = LAST_MONSTER.attempts + 1
end
end