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.
Hello I already got deleted on 5 chars. They seem to spawn for example a goblin, which is not losing any hp. when the bot attacks it like 10 times, you get deleted. any way to leave this monster and not atk it?
09-23-2019, 07:07 PM (This post was last modified: 09-23-2019, 07:08 PM by Arkilys.)
Hello.
Are you hunting goblins? If not, just add the specific creatures that you are hunting to Targeting list and Bot will not attack it.
Otherwise, you can use targettime() or targettimems() to check for how long you are attacking the current targeting and then check its HP. If it's full or almost full then play a sound, flash client and ignore the creature. However, i would recommend you just to flash client and play sound.
This script will check the creature's HP% if you are attacking it for 10s or more seconds then if hp% is higher or equal to 90 it will play a sound, flash client and ignore the creature.
if targettime() >= 10 then
local creature_attacked = attacked()
local creature_targeted = target()
if creature_targeted.id > 0 and creature_targeted.id == creature_attacked.id and creature_attacked.hppc >= 90 then
playsound('default')
flashclient()
ignorecreature(creature_targeted.id, true)
end
end