Macro Priority Help = focus > mouseover > self (blessing of freedom)

I feel like I spent maybe 30m scouring the web and I can’t find anything that works. I went into options and select AUTO for self cast.

I have a macro that currently triggers on mouseover. If there’s no mouseover target, it defaults to casting the spell on myself. I’d like to enhance this macro by adding focus targeting as the highest priority, followed by mouseover targeting, and as a fallback, self-casting.

#showtooltip Blessing of Freedom
/stopcasting
/stopcasting
/cast [@mouseover,nodead,help,nochanneling][] Blessing of Freedom

Is focus dedicated toward enemy player? Should I be using @player1 instead or @playerName ?

Does adding an additional focus option not work:

#showtooltip Blessing of Freedom
/stopcasting
/stopcasting
/cast [@focus,nodead,help,nochanneling][@mouseover,nodead,help,nochanneling][] Blessing of Freedom

I haven’t tested, but would assume that works

1 Like

Optimized

#showtooltip
/stopcasting
/cast [@focus,help,nodead] [@mouseover,help,nodead] [] Blessing of Freedom

In general you just change help to harm. If you’re trying to automatically target enemies in arena its @arena1 etc.

2 Likes