Quick Mob Marking Macro

Started by Shadowwolf, June 17, 2009, 05:15:13 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Shadowwolf

For some tanks, its helpful in group to quickly mark a named mob for quick focus firing, etc. I use one on our raids to tag specifically named mobs so I dont have to search for them then hit the specific raid mark which takes too much time when the importance is dealing with them quickly.

Example macro I use for Dark Rune Sentinels on the Razorscale fight in Ulduar:
/cleartarget
/tar Dark Rune Sentinel
/script SetRaidTarget("target",7)


This will clear any target you have currently, specifically target the named mob, and then set the icon you choose on it. ""target",7" is the "Cross" icon. You can change the number to change the icon symbol it places on the target. Here is the list of the numbers and what icon they represent.


  • 1 = Yellow 4-point Star
  • 2 = Orange Circle
  • 3 = Purple Diamond
  • 4 = Green Triangle
  • 5 = White Crescent Moon
  • 6 = Blue Square
  • 7 = Red "X" Cross
  • 8 = White Skull

The only drawback with this is that you need to know the exact name of the mob/target you are looking for or you might target something else like a player. You can easily look at the combat log or on wowhead to find the exacts in making this macro.

You can also add an ability to cast if you want to it say for example if you need to make sure you cast something immediately when it spawns, for tanks say a taunt or something.

here is an example of the same macro I use on the Mimiron fight to target, mark and cast roots on bombs that spawn during Phase 3:
/cleartarget
/tar Bomb Bot
/script SetRaidTarget("target",8)
/cast Entangling Roots(Rank 8)

Come to the darkside, we have cookies.
"A flute with no holes is not a flute, and a donut with no hole is a danish" - Chevy Chase as Ty Webb in Caddyshack
"Be who you are and say what you feel, because those who mind don't matter, and those who matter don't mind."- Dr. Suess


Vengeance

I get the feeling this'll help a lot in my em...speed runs of heroics  :-\
Thanks a bunch!