6.2.3 Sacred Shield/Light of Dawn build 1 button macro. Topping meters.

Hey,

Seems the holy section of the forum is dominated by shockadin builds and old healing macros so i decided to share my own 1 button healing macro im using for healing and topping meters with.

Holy paladins have two builds at the moment.

Eternal Flame and Sacred Shield.

This macro is for the Sacred Shield build.

With the Sacred Shield build your aim is to keep Sacred Shield up on your two tanks and then some damage dealers. Your holy power is spent on Light of Dawn because the aoe healing it does, heals your beacons for more than word of glory would.

How does the macro work?

The macro is gonna start by casting Sacred Shield on your current target, but only once. When you change target it will cast Sacred Shield again.
It will then cast Holy Shock which generates holy power. When Holy Shock has been cast three times and you have three holy power it will cast Light of Dawn.
When the above is on cooldown it will cast Holy Prism on your targets target.
When everything else is unavailable it will spam Holy Light.

What you do is spam the macro and select different people in your raid/party that is taking dmg. Make sure to keep and eye on your Sacred Shield cooldown and select the tanks every once in a while so they get Sacred Shield. It is however not the end of the world if your tanks doesnt get it.

Also remember to use your cooldowns often.

Talents: 1/1/3/2/2/1/1
Glyphs: Merciful Wrath/Divinity/Hand of Sacrifice


Sequences["Holy"] = {
StepFunction = [[
		limit = limit or 1
		if step == limit then
			limit = limit % #macros + 1
			step = 1
		else
			step = step % #macros + 1
		end
	]],
PreMacro = [[
]],
	'/castsequence reset=target Sacred Shield,null',
	'/castsequence reset=10 Holy Shock,Holy Shock,Holy Shock,Light of Dawn',
	'/cast [@targettarget] Holy Prism',
	'/cast Holy Light',
PostMacro = [[
/script UIErrorsFrame:Hide();
    ]],
}

Hey, Having an issue fitting the text into the macro field in game. Am I missing something?

Great Macro - for Gnome Sequencer not a macro extender

Nevermind this mouseover not working.

Macro is working great. I added a mouseover so i can keep my Target free for enemies.

Sequences[“Holy”] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
]],
‘/castsequence [target=mouseover]’,
‘/castsequence reset=target Sacred Shield,null’,
‘/castsequence reset=10 Holy Shock,Holy Shock,Holy Shock,Light of Dawn’,
‘/cast [target=mousever] Holy Prism’,
‘/cast Holy Light’,
PostMacro = [[
/script UIErrorsFrame:Hide();
]],
}