Im hunting using 2 demons skeletons, i need to get mine creatures for not atack it, i already know how to do this, using the follow command:
If you are sure that only your demon skeletons are on screen then run this script. You can run it on a Cavebot -> Action or manually on Console.
Alternatively, You simply follow the demon skeleton and run this.
Nice, but where i see the demon skeletons id? i run it on console but dont see the return of the software. Where i see the return of id?
OK!
Let's suppose I have the id, how and where will I put the following code so as not to attack them?
ignorecreature(number creatureId, bool ignore)[void]: Ignores/Unignores a creature, it will be ignored/unignored on Targeting and .ignored on getcreatures().
Thanks!
If you are sure that only your demon skeletons are on screen then run this script. You can run it on a Cavebot -> Action or manually on Console.
local creatures = getcreatures('mfs')
for _, creature in ipairs(creatures) do
if creature.name == 'Demon Skeleton' then
ignorecreature(creature.id, true)
end
end
Alternatively, You simply follow the demon skeleton and run this.
ignorecreature(followed().id, true)
Nice, but where i see the demon skeletons id? i run it on console but dont see the return of the software. Where i see the return of id?
OK!
Let's suppose I have the id, how and where will I put the following code so as not to attack them?
ignorecreature(number creatureId, bool ignore)[void]: Ignores/Unignores a creature, it will be ignored/unignored on Targeting and .ignored on getcreatures().
Thanks!