Updated for Mists of Pandaria!Today we’ll talk about my hunter, Cerylia, and her macros. By doing so, I hope to be able to help out any other fledgling hunters that are out there, and have something to refer newbies to when I’m helping them out. :) I also hope that maybe other more experienced sorts can share their advice with me as well. I’m always trying to improve myself.
The Target macro: This is the button I’m hitting the most in any dungeon. It sets up Hunter's Mark and attacks my target, all in one button push.
/targetenemy [noexists]
/startattack [harm,nodead]
/cast Hunter's Mark
If I don't already have something targeted, the macro will select a nearby enemy for me and start my attack.
I used to use a similar version of the macro that makes sure I always assist my focus target (usually my tank) or my pet (if I didn't have a focus target):
/assist [@focus,exists,nodead]; [@pet,exists,nodead]
/targetenemy [noexists]
/startattack [harm,nodead]
/cast Hunter's Mark
Eventually I found this restrictive, but it might be helpful for fledgling hunters who are having trouble picking the correct target in a crowd of enemies.
--
The Misdirection macro: Misdirection is a very important ability for hunters. It lets you transfer the threat generated by your initial attacks to someone else (like your pet, or tank). However, Misdirection by itself requires that you are targeting your Misdirection target to cast it. Having to retarget afterwards can take a few seconds and waste valuable time in a fight. With this macro, I can use Misdirection without having to target the person I wish to Misdirect to at all, which means I can keep fighting without missing a beat.
#showtooltip Misdirection
/stopattack
/cast [button:1, @focus,exists] Misdirection; [button:1, help] Misdirection; [button:2,target=playerpet] Misdirection
First, my auto attack is turned off, so that I do not waste my Misdirection with an auto attack (occasionally this doesn't work if you are already in the middle of a shot; you may cast Misdirection while your arrow is already in flight). The second line casts Misdirection… but it is subject to certain conditions. For the first part, if I left-click on the button, Misdirection is automatically cast on my Focus target. However, if I have no Focus target, Misdirection acts as it usually does, which requires me to have my intended MD person targeted. Otherwise, if I right-click the button, Misdirection automatically is cast on my pet, which is good for when I solo.
I like to follow up this macro by choosing something like Multi-Shot or Explosive Trap, which will transfer the threat I generate on all the enemies to my tank. :)
--
Attack Something!: Several patches ago, a change was put in so that basic hunter attacks like Arcane Shot, Steady Shot, etc. do NOT acquire a target automatically. (Some other classes were affected in a similar fashion.) This was done to prevent hunters from accidentally pulling enemies on the other side of the room with a mistimed click of the button immediately after their current target fell dead.
While a good intention, I found this change to be really obnoxious. I'd have to target everything I wanted to attack beforehand, which could be annoying in a best case scenario, or a dangerous loss of precious time in an emergency. So I turned most of my basic attacks into simple macros like this:
#showtooltip Arcane Shot
/targetenemy [noexists]
/startattack [harm,nodead]
/cast Arcane Shot
Looks very similar to my targeting macro, right? Like that one, the macro will attack my current target, or if I don't have a target, acquire one for me automatically. I made similar macros for my other attacks, just replacing the name of the ability in question.
I've been playing hunter for a long time, so this is convenient for me. If you do the same, just be careful how you use your abilities... or you may accidentally pull things too. ;)
--
Ever since I discovered and started reading about macros, I’ve really been using them quite a bit. :) They’ve been a big help to me, and I hope they can be a big help to someone else as well.
If anyone has any other macros they use for their hunter that they’d like to share, or ideas on how my current ones could be improved, please share. I’d love to see them!
Happy hunting!