GS-E 7.1.5 RETRO

Hey Guys, so another Alt leveled so another macro made, first I have no idea how this compares to any existing
as this macro is a revamp from my old GS macro I slapped together in early legion testing. then having hit 110 it trimmed the fat and split into two macros as it was at the time a more leveling macro that just fired “all the things!”

So the macro is split into one named Crusade and one name Retro. Crusade is essentially your Opener/Burn macro
for when you want to pile on the damage while your wings are out.

Retro is just the base rotations minus the burst CDs with the idea that you use this and then have Crusade ready
when you need it.

While I could have it an all in one I find it odd having big CDs or defensives firing off on trash and then nothing is available on boss fights. this gives me control and options.

Finally, I have divine storm on alt function. so in multi-mob situations holding alt down while the macro is going you will Divine Storm instead of Templar’s Verdict.

Sequences['Crusade'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="John Metz",
  SpecID=70,
  Talents = "1212212",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
      KeyPress={
      },
      PreMacro={
      },
        "/cast [mod:alt] Divine Storm",
        "/cast [nomod] Templar's Verdict",
        "/cast Blade of Justice",
        "/cast Zeal",
        "/cast Judgment",
        "/cast Crusade",
        "/cast [mod:alt] Divine Storm",
        "/cast [nomod] Templar's Verdict",
        "/cast Wake of Ashes",
        "/cast [mod:alt] Divine Storm",
        "/cast [nomod] Templar's Verdict",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}
Sequences['Retro'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="John Metz",
  SpecID=70,
  Talents = "1212212",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast [mod:alt] Divine Storm",
        "/cast [nomod] Templar's Verdict",
        "/cast Blade of Justice",
        "/cast Zeal",
        "/cast Judgment",
        "/cast Wake of Ashes",
        "/cast [mod:alt] Divine Storm",
        "/cast [nomod] Templar's Verdict",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Just tried out this Macro (as I’ve had many DPS problems with my pally) and sitting around the 275k mark, same as TL’s macro, or thereabouts. ilvl is 876, with 19,66% haste.

Edit: I have none of the “good” legendaries. Stuck with Justice Gaze equipped, currently.

2 lines can be changed to “/cast [mod:alt] Divine Storm; Templar’s Verdict”

for example:

Sequences['Ret'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Danikar@Eversong",
  SpecID=70,
  Talents = "1,1,3,2,1,1,2",
  Help = "Talents: 1132112",
  Default=1,
  Icon='INV_MISC_QUESTIONMARK',
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast [mod:alt] Divine Storm; [mod:shift] Justicar's Vengeance; Templar's Verdict",
        "/cast Judgment",
        "/cast Blade of Justice",
        "/cast Wake of Ashes",
        "/cast [mod:alt] Divine Storm; [mod:shift] Justicar's Vengeance; Templar's Verdict",
        "/cast Crusader Strike",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}