Here is what I have:
Slow.mac
Code: Select all
|slow.mac
|A Simple chanter slow macro
|(C) Chill
#turbo
#Include SpellCast.inc
|#event Fizzle "Your spell fizzles!"
|#event tashed "glances nervously about."
|#event Slowed "slows down."
|#event Resist "Your target resisted the Forlorn Deeds spell."
Sub Main
/if (${Target.PctHPs} < 100) {
/echo Slowing ${Target.Name} at ${Target.PctHPs}%
:tash
/call cast "Howl of Tashan"
:slow
/call cast "Serpent of Vindication" item
:boggle
/if (${Target.TargetOfTarget.ID} == ${Me.ID}) /call cast "Boggle"
} else {
/echo ${Target.Name} not yet engaged.
}
/returnI am trying to see if I am agro, and then boggle if I am...can anyone help me get this working, or suggest a better way to check for agro?
Thanks.
P.S. I do have the ToT LAA and I am getting the mob in the ToT box if that matters.


