Need a Working Retribution ST/AoE Macro PLS HELP

Hi

I would love if any 1 could help me, make a good working ST/AoE macro for my RetP, I dont know how to make macros my self :slight_smile:

Jimmy

There are a lot available if you search, these are what I use:

ST


Sequences['RPST'] = {
    PreMacro = [[
/targetenemy [noharm][dead]
/cast [nostance: 1] seal of truth
/cast Avenging Wrath
    ]],
    '/cast Final Verdict',
    '/cast [@player,talent:6/1,] Holy Prism; [talent:6/3] Execution Sentence',
	'/cast Crusader Strike',
    '/cast Judgment',
    '/cast Exorcism',
	'/cast Hammer of Wrath',
    PostMacro = [[
/use [combat] 13
/use [combat] 14
/startattck
    ]],
}

AOE


Sequences['RPAOE'] = {
    PreMacro = [[
/targetenemy [noharm][dead]
/cast [nostance: 2] seal of righteousness
/cast Avenging Wrath
    ]],
    '/cast Divine Storm',
    '/cast [@player,talent:6/1,] Holy Prism; [talent:6/3] Execution Sentence',
    '/cast Hammer of the Righteous',
    '/cast Judgment',
    '/cast Exorcism',
    '/cast Hammer of Wrath' ,
    PostMacro = [[
/use [combat] 13
/use [combat] 14
/startattck
    ]],
}

Hi

TY PandaBomb for your help :slight_smile:

Jimmy

Sequences['Ret'] = {
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
/cast [@mouseover,harm] Rebuke
]],
	[[/cast [@mouseover,help,nodead] Flash of Light]],
	[[/cast [nomod] Execution Sentence]],
	[[/cast [mod:ctrl] Divine Storm; [mod:alt] Hammer of the Righteous; [nomod] Crusader Strike]],
	[[/cast Judgment]],
	[[/cast Exorcism]],
PostMacro = [[
/cast Hammer of Wrath
/cast Avenging Wrath
/use [combat] 13
/use [combat,mod:alt] 14
/startattck
/script UIErrorsFrame:Clear()
/console Sound_EnableSFX 1
]],
}

This is what I use. If you want to make the most out of your holy power usage, you don’t include Templar’s/Final Verdict or Divine Storm in the macro. Keybind them separately, or use modifiers. It is easier to include them while you’re leveling up a lowbie since you’d only have 3 holy power, but thought process isn’t a bad thing to learn early on. I suggest reading the Ret Pally guide on Icy Veins for holy power usage. Divine Storm is in mine just for procs when needed. As far as stances, you can macro them in if you want to. I don’t really see a point to it. Keep Seal of Righteousness up during trash, and switch to Seal of Truth during boss fights.

EDIT
Flash of Light is in my macro because I have taken the Selfless Healer talent. If you go with another talent option, I would suggest taking it out as you might accidentally hover your mouse over someone and spam heal them, wasting your mana.

If you aren’t comfortable using modifier keys, you can take them out and make separate macros like the one listed above. I would still suggest keybinding your stances and holy power consumers separately to make the most out of them.