Help with conditional macro

Hi there!
For some reason, I can’t get the following macro to work. What am I doing wrong?

#showtooltip
/cast [@mouseover,help,nodead][] Flash Heal; [mod:alt] Halo

The Flash Heal part works just fine, but I can’t get the alt modifier to work for Halo. Is there something special I need to put in since Halo is a talent?
Thank you in advance!

The second set of [] for flash heal is basically a cast flash heal with no conditions, so it will always supercede the alt modifier halo. Gotta change around the format a bit.

If you want halo to always go off when holding alt, then

#showtooltip
/cast [mod:alt] Halo; [@mouseover,help,nodead][] Flash Heal

If you want halo to only go off when holding alt and not mousing over a friendly then

#showtooltip
/cast [@mouseover,help,nodead] Flash Heal; [mod: alt] Halo; Flash Heal

This might also work for the latter.

#showtooltip
/cast [@mouseover,help,nodead][nomod:alt] Flash Heal; [mod:alt] Halo
1 Like

Derp. I feel silly now. lol Thank you so much, friend!

1 Like