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.
09-22-2022, 02:06 AM (This post was last modified: 11-07-2022, 09:00 PM by Arkilys.)
Hello.
I believe your slime summons are not called "Slime", but "Slime " with a space at the end. Maybe it's a particularity of that slime respawn or realesta itself.
Alternatively, You can use the script below, it will work like slime trainer. You just need to setup the SLIME MOTHER ID.
local SLIME_MOTHER_ID = 0 -- Slime mother id.
local ALERT_ON_MOTHER_DIED = true -- Should alert if slime mother dies?
local attackedCreature = attacked()
if attackedCreature.id == 0 then
local motherDied = true
local attackedAlready = false
local creatures = getcreatures('mfs')
for _, creature in ipairs(creatures) do
if creature.dist >= 0 and creature.dist <= 1 and creature.id ~= SLIME_MOTHER_ID and creature.ismonster and string.sub(creature.name, 1, 5) == 'Slime' then
attack(creature.id)
attackedAlready = true
elseif creature.id == SLIME_MOTHER_ID then
motherDied = false
end
end
if motherDied and ALERT_ON_MOTHER_DIED then
playsound('default')
flashclient()
end
end