Useful Macro Templates

You could also setup an @NAME macro but it’ll require updating it each time the tank has a different name. There’s a 2 macro setup that can automate that for you.

Create a blank macro called MD

Create a 2nd macro called Set MD with the following:

/run local n=UnitName("target") or "pet" if not InCombatLockdown() then EditMacro(GetMacroIndexByName("MD"),nil,nil,"#showtooltip\n/cast [@"..n..",help,nodead] [@pet,exists] [] Misdirection") print("Misdirection target set to "..n) end

Target the tank and hit Set MD. It’ll populate their name and the rest in MD then use that to cast on the tank.

Amazing!!!

Do you know a tutorial or a user guide to learn about WoW Macros?

Nope. I recommend reading through Adreaver’s stickied post.

2 Likes

macros work the first thing they see true, how is cast and use different in application when the first thing true would be a spell anyway?

There are some spells and items that have identical names.

eg
https://www.wowhead.com/item=7676/thistle-tea
https://www.wowhead.com/spell=381623/thistle-tea

https://www.wowhead.com/item=140749/horn-of-winter
https://www.wowhead.com/spell=57330/horn-of-winter

Is there a way to shorten this to save characters?

/stopmacro [channeling:Mind Flay: Insanity][channeling:Void Torrent][channeling:Penance][channeling:Dark Reprimand]

/stopmacro [channeling:Mind Flay: Insanity/Void Torrent/Penance/Dark Reprimand]

added that variant to the quoted post.

1 Like

I want this macro to cast Purify or Purify Disease on my alive friendly target if I have one. And cast on myself if I hold alt, have no target, or have an enemy target.

This macro works as expected, but can it be shortened at all?

#showtooltip [known:Purify] Purify; Purify Disease
/cast [mod:alt,@player] [help,nodead] [@player] [known:Purify] Purify
/cast [mod:alt,@player] [help,nodead] [@player] Purify Disease

Also without the extra tooltip stuff, only the Purify icon/tooltip is shown as Disc but Purify Disease is not as Shadow.

Purify Disease automatically becomes Purify so there’s no need to code them separately.

#showtooltip
/cast [mod:alt,@player] [help,nodead] [@player] Purify Disease
1 Like

A lot of great info here, so thanks for that.

I use a simple @mouseover for hunter traps, which is cumbersome in the heat of battle. I can’t quite wrap my head around getting a single macro to use whichever trap is off cool-down.

I also wonder if there is a way to just drop a trap/cast Meteor or Flamestrike on a focused target so tab-targeting might be slightly more useful. Yes, I use tab-targeting. :grimacing:

You could use a cast sequence, and have it reset after a specific cool down, that works for my Totemic Shaman who uses a cast sequence for their hero totem and healing totem. It even can trigger the move function of the hero totem even though the CD isn’t done. That might be unique logic though.

As far as I’m aware outside of specific talents cast at target is dead.

1 Like

Yeah, like Night said, you can’t automatically cast reticle spells at target locations, only ground locations. That said, Flamestrike and Meteor are big reticles so I’m not sure why you’d need to place them directly on a specific target rather than just using a @cursor macro and keeping your mouse over the group as a whole.

2 Likes

I have essential tremor, so getting the mouse to the right spot isn’t always 100%. I count it a win if I manage to get the target to overlap half of what I am hoping for. Other players in LFG and LFR, not so much.

But, that being said, if cast at target is a dead thing, I will just keep going as I have.

All the same, thank you for the replies. I will still be able to make much good use from all you have done in this thread.

2 Likes

Ah, understood, my apologies. Yeah, unfortunately Blizz has been adamant that they don’t want reticle spells to be castable at targets. That said, they’ve introduced at least 2 spells that can now flip between targeted and reticle (Shadow Crash and Earthquake) so there’s a chance they’ll expand it in the future to other reticle spells.

2 Likes

Maybe the addon “Grounded” would be of help to ya? It shows the reticle on keypress down and casts upon release.

3 Likes

I may have used it in the past, I can’t recall. But I will be certain to check it out, thank-you for the suggestion.

1 Like