Howdy all,
Here’s my basic Priest Holy DPS 1 button macro
Why? All the Disc Hate
Talents are still in a healing setup 3,1,3,2,3,1,2
Glyph of Reflective Shield is useful here, but others are just healing
Sequences['PR_HDPS'] = {
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]
]],
'/castsequence [nochanneling,@targettarget] reset=target/15 Power Word: Shield',
'/castsequence [nochanneling,@target] reset=180 Shadowfiend',
'/castsequence [nochanneling,@target]reset=target/18 Shadow Word: Pain, Power Word: Solace, Smite, Smite, Smite, Smite, Smite, Smite, Smite, Smite',
'/cast [nochanneling] Power Word: Solace',
'/cast [nochanneling] Smite',
PostMacro = [[
/use [nochanneling]13
/use [nochanneling]14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}