Macro Help - targettarget=(my name)

Hi all,

I’m trying to make a macro that will cast Shred, unless the target of my target is me. Then it will cast Claw.

So far I have

#showtooltip Shred

/startattack

/castsequence Shred

/castsequence reset=[targettarget=Inthelava] Claw

But it doesn’t seem to work… Any help would be appreciated

Try:

#showtooltip Shred
/startattack
/cast [targettarget=player]Claw;Shred

This should cast Claw if the mob is targeting you as it’s first priority and, if not, cast Shred. You can also try replacing the [targettarget=player] with [targettarget=Inthelava].