Prot Pally PvE lvling aoe

Prot Pally lvling aoe macro. Simple GS to burn down groups when lvling.

Sequences[“optank”] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
“/cast Avenger’s Shield”,
‘/cast Consecration’,
‘/cast Blessed Hammer’,
‘/cast Blessed Hammer’,
‘/cast Shield of the Righteous’,
‘/cast Judgment’,
PostMacro = [[
/cast
/cast
/startattack
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}

I’ve put this one into a format more useful for the current version of GS. The talents are mine as the OP didn’t list what his are.

Sequences['Prot-Leveling-AOE'] = {
-- This Sequence was exported from GSE 2.1.00.
  Author="Gindar@Medivh",
  SpecID=66,
  Talents = "2132122",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Sequential",
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast Avenger’s Shield",
        "/cast Consecration",
        "/cast Blessed Hammer",
        "/cast Blessed Hammer",
        "/cast Shield of the Righteous",
        "/cast Judgment",
      PostMacro={
      },
      KeyRelease={
        "/startattack",
      },
    },
  },
}

Thank you!