Page 1 of 1

Dodging monster skills with hide.

Posted: 04 Mar 2015, 01:11
by CrazyStoner
Im a little rusty with the code.

Can i set up my bot to dodge certain monster spells.
I'm running an assassin which is pure agility.
But the map im running has monsters that cast spells one hit KO spells.

I'm having trouble coding it.
The monsters are casting heal, so i don't want to hide from that.
But they also cast AOE spells i.e. non targeted spells which i want to dodge
and high damage targeted spells.

I can't just teleport away either!

I need a viable hide command

Re: Dodging monster skills with hide.

Posted: 06 Mar 2015, 16:09
by Raider

Re: Dodging monster skills with hide.

Posted: 22 Mar 2015, 20:14
by vitriol
write a macro ~

console /Monster (.+) is casting (.+)/i
call {
if ($.lastMatch2 != Heal) goto hide
stop

:hide
do ss Hide
}

and you can write the unhiding code yourself