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.
if connected() then
local attacked_creature = attacked()
if attacked_creature.id > 0 then
local FLAG = false
for _, setting in ipairs(SETTINGS) do
for __, monster in ipairs(setting.Monsters) do
if attacked_creature.name:lower() == monster:lower() then
local lhand_item = lhand()
if lhand_item.id ~= setting.WandId then
moveitems(setting.WandId, 'lhand', '')
wait(500, 800)
end
FLAG = true
break
end
end
if FLAG then
break
end
end
end
end