Smal Pala,smal Macro,smal damage: Judgement or Templar's Verdict (HELP Threat)

Hey guys,
i’m really having problems with my single target macro and am in despair.
I have to choose between prioritizing Judgment or Templar’s Verdict.
Either he fires Judgment on cd and almost always has 5 combos or he fires Templar’s Verdict and leaves usable Judgment around 3-4 gcd.
In both cases I have lost about 20-30% dps.
The macro/dps is testet at a patchwork encounter.
I’m working with an ahk of 55ms,but I tried almost everything between 25 and 250ms.
Btw,I have the leggy cape, so according to the guide, I should work with the Last Judgment Talant…
With this version he uses (almost always) Templar’s Verdict so that I have no excess combos.


Author="Brighty@DieEwigeWacht",
  SpecID=70,
  Talents = "1232222",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/cast Shield of Vengeance",
        "/cast [mod:alt] Avenging Wrath",
      },
      PreMacro={
        "/cast Templar's Verdict",
      },
        "/cast Judgment",
        "/cast Templar's Verdict",
        "/cast Wake of Ashes",
        "/cast Blade of Justice",
        "/cast Crusader Strike",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

So if I take Templar’s Verdict from the pre-macro, he uses Judgment more often, but not on cd and doesn’t so often fire Templar’s Verdict.
(Btw, sorry for my bad english!).
Ironically, the other macros do not work as well as this one…!?
Maybe one of you has an idea why he doesn’t work as expected the prio list and use both talents correctly?

Have you try to set a loop limit and see if that helps?

Honestly, I’ve read through the Innerloop tutorial 100 times but I can not really implement in the productive macro. I can define the inner loop limit, but that’s it. All the other important loop information can’t be entered anywhere at the macro…!?

EDIT:
Ok,i have checkt this funkion again and TL had a important information.
Now i know the functionality with just the ILL option and i’ll try it.

awesome good luck :slight_smile:

Ok,i tried a ILL Option and it run’s a little smoother then the 1st one (round about 15% more dps).
U can delet the one Templar’s Verdict at the body-part,this causes the judgment always fires first…
The AoE macro is the same just with Divine Storm.
AHK is @55ms.

Singele Target:


Sequences['Ret_ST'] = {
-- This Sequence was exported from GSE 2.2.03.
  Author="Bright@DieEwigeWacht",
  SpecID=70,
  Talents = "1232222",
  Help = [[Worldquest 1232221
Raid Bosses 1232222]],
  Default=1,
  MacroVersions = {
    [1] = {
      Trinket2=true,
      StepFunction = "Priority",
      LoopLimit=2,
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/cast Shield of Vengeance",
        "/cast [mod:alt] Avenging Wrath",
      },
      PreMacro={
        "/cast Templar's Verdict",
      },
        "/cast Judgment",
        "/cast Templar's Verdict",
        "/cast Wake of Ashes",
        "/cast Blade of Justice",
        "/cast Crusader Strike",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

Multi Target:


Sequences['Ret_AoE'] = {
-- This Sequence was exported from GSE 2.2.03.
  Author="Bright@DieEwigeWacht",
  SpecID=70,
  Talents = "1232222",
  Help = [[Worldquest 1232221
Raid Bosses 1232222]],
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      LoopLimit=2,
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/cast Schild der Vergeltung",
        "/cast [mod:alt] Avenging Wrath",
      },
      PreMacro={
        "/cast Divine Storm",
      },
        "/cast Judgment",
        "/cast Divine Storm",
        "/cast Wake of Ashes",
        "/cast Blade of Justice",
        "/cast Crusader Strike",
      PostMacro={
      },
      KeyRelease={
        "/cast Judgment",
      },
    },
  },
}