This follows TBC Beast Mastery rotation following the 1:1 pattern (1 Steady Shot per 1 Auto Shot).
I use AHK set at 250ms, or 275ms as gear changes and if my Multi-Shot starts clipping.
I remove MS, for Heriocs where CC is being used and replace it with manual Arcane shots.
I use The following keybinds and Actionbar settings.
Standard BM Hunter Build 41/20/0
It attempts to handle:
- Automatic pet management - Calls pet if dismissed, revives if dead
- Proper Multi-Shot priority - Uses Multi-Shot on cooldown, falls back to Steady Shot
- 100% Kill Command uptime - Kill Command on every action (off-GCD)
- Auto-target - Finds new target if current dies or none selected
- Trinket - On-use trinkets fire every 2 clicks
!GSE3!nZPdbtpAEIVF0z+hvgBqL3gAUhtDW9KrUJsfEwMRpiRShKrBnoDFetfZHVfyHXmUprlqn6uPkPsu2FUTKVWiXq01c749R+PZq14CGRMQXrszkBEsGKpNdwiBFGrjdRjGyMkWKaeS6+NFijxA9W32abhvvTOH/r4f8SXDLwRyiXRdgJdXvXZAkeDq8mfpeyfeFk8vjAAUVc8OE6RaiBDOqwctq1xUudDlebXVapSN/DLkGGfbxgpkPD/bEWVDq4AIgrW+KNfVtv0aF4VA6WohcShLMHd3pvqzm4d6UiQ6yq0bTdN6f7t/C9srpCe51PpgWvXyw9jTu1ijWbfMO9j9wZ49hN3v9vz/sBd/fsxrI1VYrevB787mI9iXjx/hrux4QiTdCSYIVPJ8wqSb8p1ykC8VRcCOXb5II0Z/99A9QVi3Uwlqc+Rpo89JCIThyNJ2pmXV683GgWn1h3onHCD40e8jS1jE16dvVkSJ+mgYYaQCIcO3y6WxVJjySPO9KTBtqfe8ndJKyNlEMBGsFYPs0JEIsQoyWuGg53dmKJVOWXn1azIEngJzOaH8ug0s+I0zghj/8RZ6Dp5DyqjU9RMMXGfPno7tynFl2uHnQgZoizjRmRcRiyi72Q1sYI89r2NP3fHoNw==
This has been updated for lvl 70. I am not raiding at this time and do not have parses, but I am top DPS consistently in 5-man.
Non-GSE macros
For Hunters mark I use this macro separately
/cast [@mouseovermouseovermouseovermouseover,harm,nodead][@target,harm,nodead] Hunter’s Mark
or for solo questing
#showtooltip Hunter’s Mark
/cast Hunter’s Mark
/@targetetattack [@target,harm,node@petd]
/cast [@pet,dead] Revive Pet
/startattack
/targetenemy [noharm][dead]
#showtooltip Bestial Wrath
/cast Bestial Wrath
/cast Rapid Fire
/use 13
/use 14
/cast Kill Command
Drops Freezing trap and FD with one button
#showtooltip Feign Death
/cast Feign Death
/cast Freezing Trap
Focus Tank to MD or don’t focus and you MD to pet
#showtooltip Misdirect@focuson
/cast [@focus,exists,nodead] Misdirection; [@pet,exists,nodead] Misdirection
For Draenei Hunters, for those single elite pulls.
#showtooltip Mend Pet
/castsequence reset=30 Mend Pet, Gift of the Naaru
Left mouse click for Hawk, right click for Viper aspect, or select your own keybinds
#showtooltip
/cast [nobutton:2] Aspect of the Hawk
/cast [button:2] Aspect of the Viper
This is my AHK. It requires you push the button; it is not a one-button on/off. You can typically achieve the same results by using the mouse scrollwheel. There might be some risks with using AHK, but I have used it since GSE was introduced. I have issues with my hands, that using it helps me play the game.
Change the numbers to your preferred buttons.
$1::
Loop
{
if not GetKeyState("1", "P")
break
Send 1
sleep 250
}
return
$2::
Loop
{
if not GetKeyState("2", "P")
break
Send 2
sleep 250
return
$3::
Loop
{
if not GetKeyState("3", "P")
break
Send 3
sleep 250
}
return
}
