Blessing of Seasons Macro help

I want a macro that will autotarget different people for Blessings of the Seasons. This does not work and I don’t know why. The targeted names are real player names in my version.

/cast [@target=TopDPS][] Blessing of Summer
/cast [@target=Me][] Blessing of Autumn
/cast [@target=Me][] Blessing of Winter
/cast [@target=TopHealer][] Blessing of Spring

uh… TopDPS and TopHealer are not valid target modifiers that i’m aware of.

You can target yourself with @player, such as:

/cast [@player][] Blessing of Autumn

I’m not exactly sure how the spell interacts with macros, so it’s hard to say what the problem is. One thing to try is removing the empty conditionals. All of the “[]” in the macro. Those always evaluate to true, and so will stop a macro from progressing.

Edit: I spotted something else: Ether use “@” or “target=” “@target=” isn’t a valid way to specify a unit.

1 Like

Yeah, @name (@player for yourself) or target=name (target=player). You may want to check that they’re not dead and include a fallback in that case but otherwise the [] are all unnecessary/creating problems.