[quote quote=20088]Updated Macros as of this posting. I have started using two different versions depending on what group i’m in. One for raiding and one for things where I over midigate, like heroic dungeons and I can afford to increase the DPS a lot.
Using either of these you should have 0 threat issues, competitive DPS, and excellent midigation. As always, pre-cast sacred shield, and make sure you are using Blessing of Might if the mastery buff isn’t provided elsewhere.
Stat weights will be posted at the bottom.
Raid Macro
Sequences['Prot'] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
'/cast [nomod] Crusader Strike',
'/cast [mod] Hammer of the Righteous',
'/castsequence Sacred Shield,Judgment,Judgment,Judgment',
"/cast Avenger's Shield",
'/cast [nomod,@player] Execution Sentence',
'/cast [mod] Execution Sentence',
'/cast Hammer of Wrath',
'/cast Consecration',
'/cast Holy Wrath',
PostMacro = [[
/cast Shield of the Righteous
/cast divine protection
/startattack
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}
This first macro is the raid tanking macro. It is all about the self healing, active midigation and general ability to take hits. It is used with the talent spec, 3,2,3,2,3,3,2 and produces the best TMI numbers, all based on TheckPhd’s research over at maintankadin.com/sacredduty.com. Glyphs are Divine Protection, Alabaster and Consecrator. Always run Seal of Insight.
Mod key switches to the “trash” AOE sequence.
This next macro is for when you want to make mages cry with your DPS in heroics and early raid bosses where you out midigate the encounter.
DPS Tanking Macro
Sequences['Sera'] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
'/cast [mod] Crusader Strike',
'/cast [nomod] Hammer of the Righteous',
'/castsequence Sacred Shield,Judgment,Judgment,Judgment',
"/cast Avenger's Shield",
'/cast [mod,@player] Execution Sentence',
'/cast [nomod] Execution Sentence',
'/cast Hammer of Wrath',
'/cast Consecration',
'/cast Holy Wrath',
PostMacro = [[
/castsequence Seraphim, Shield of the Righteous, Shield of the Righteous, Shield of the Righteous
/cast divine protection
/startattack
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}
The only change to setup is swapping Holy Shield as the T7 talent to Seraphim. This macro produces insane DPS, and you should be switch between Truth and Righteous seals depending on the amount of enemies.
Mod key if you are on a boss to switch to single target HoPo generation and force execution sentence to cast on you for self healing.
Stat Weights:
Main Hand DPS: 0.2
Bonus Armor: 1
Stamina: 0.75
Strength: 0.75
Armor: 0.6
Mastery: 0.6
Versatility: 0.46
Critical Strike: 0.45
Multistrike: 0.4
Haste (up to 50%): 0.35
Attack Power: 0.2
Avoidance: 0.1
Leech: 0.05
While STR and STA are very high on the weights, you should not be gearing for it specifically, your regular gear will provide more than enough, if given the option, on something like a trinket, take a secondary stat over STR or STA.
[/quote]
I’m unsure as to why you switched back to execution sentence for this over holy prism. holy prism produce more healing and dps vs. ES just not in a big burst. Also wouldn’t it be better to have holy wrath above consecration in the rotation since theck has it in that order? Just curious about those 2 things.