Dragonpuff wrote:I do know some Hunter's like to macro Hunter's Mark and Kill Command into every other shot they have though.
I don't have HM in my macros since it triggers the gcd, but according to some theorycrafting you don't gain or loose anything by having all your massive dps cooldowns in a special button for special times versus triggering them whenever they're off cd. This is what I have for all my shots:
Code: Select all
#showtooltip Kill Shot
/cast Rapid Fire
/cast [@pettarget,exists] Kill Command
/use 13
/use 14
/cast Kill Shot
/script UIErrorsFrame:Clear()
"/use 13" and "/use 14" refers to the two trinket slots, so they're not necessary to add if your trinkets don't have a use. If you're an engineer with the haste enchant to your gloves, you add "/use 10". It triggers all your major boosts as they come off cooldown without interfering with your gcd.
Other than that, I have a few space saving macros.
For aspects, I use:
Code: Select all
#showtooltip Aspect of the Dragonhawk
/cast Aspect of the Dragonhawk
/cast Aspect of the Viper
and
Code: Select all
#showtooltip Aspect of the Cheetah
/cast Aspect of the Cheetah
/cast Aspect of the Pack
With key bindings I just slam whatever key when my mana is low/full and it's quick to toggle between party and self-speed boost.
I haven't gotten to use this one yet, but I would have loved to have it on Gluth when I was on kiting duty and wanted to stop his enrages:
Code: Select all
#showtooltip Tranquilizing Shot
/cast [@mouseover, harm][harm] Tranquilizing Shot
No need to switch targets, just face him, mouse over, and tranq.
There's some talk recently about how pets "delay" on their attacks. They have the focus, but they don't use their skills right away. A fix to that is to add the following lines to your shots: (Please note that I haven't tested this yet.)
Code: Select all
/cast [special attack]
/use [@pettarget,harm,exists] [focus dump]
For a wolf, then, it would look like this:
Code: Select all
/cast Furious Howl
/use [@pettarget,harm,exists] Bite
If you have multiple pets you use on a regular basis, you can specify that:
Code: Select all
/cast [pet:wolf] Furious Howl, [pet:cat] Rake
(I'm not sure if you have to use the pet family name or given name...)
If you have all your cooldowns in your shots and add your pets skills, then, your shot macro would look as follows (with a wolf):
Code: Select all
#showtooltip Kill Shot
/cast Rapid Fire
/cast [@pettarget,exists] Kill Command
/use 10
/use 13
/use 14
/cast Furious Howl
/use [@pettarget,harm,exists] Bite
/cast Kill Shot
/script UIErrorsFrame:Clear()
Edit: I have no clue whatsoever about what levels you get the different skills at, so you'd obviously have to add the skills in as you get them. Clearly, this is for a level 80 hunter, but you know, it's entirely modifiable for any level. Also, I'm not raiding on my hunter, but after creating these macros I've seen my performance go up in 5-mans. Less micro management, more time to worry about not standing in fire/poison/goop on the floor.
Edit 2: You mentioned Aimed Shot, so I'm guessing you were wondering if there were any macros that queued up shots? The days of macros with multiple shot types in them are long gone, we manually weave our shots now. These macros also make it easier to do so, as you just focus on shot weaving.
And I totally missed the part about being BM. You'd obviously want to add
in there.
Final note (I think...): This type of macro generates a shitton of front-end damage and threat (seriously, when I first start unloading, I hit 7k dps where my average over the fight is ~3.4-4.5k). If you start with misdirect, your tank will love you forever. <3