1Million HPS+ Macro - Mouse over healing made easy

Hi, I have a macro that is outputting 800k-1Million HPS via Mouse over ( No need for heal bot or other healing addon) just ingame raid/group frames. But it is a mana drain is spammed to much. Can anyone help me with a MOD control for flash of Light?

I am 950ilvl at current.

You need to set focus on the main tank for Judgment to cast (I also cast it manually)

Anyways here is the macro:

Sequences['Holy_Heals_Asc'] = {
-- This Sequence was exported from GSE 2.1.01.
  Author="",
  SpecID=65,
  Talents = "1332231",
  Default=1,
  MacroVersions = {
    [1] = {
     Combat=true,
      Trinket1=false,
      Trinket2=true,
      Head=false,
      Neck=false,
      Belt=false,
      Ring1=false,
      Ring2=false,
      StepFunction = "Sequential",
      KeyPress={
        "/cast Rule of Law",
        "/cast Holy Avenger",
        "/cast Avenging Wrath",
      },
      PreMacro={
      },
        "/cast [@focustarget,harm,nodead] Judgment",
        "/cast Light of Dawn",
        "/cast [@mouseover,exists,help,nodead] Holy Shock",
        "/cast [@mouseover,exists,help,nodead] Bestow Faith",
        "/cast [@mouseover,exists,help,nodead] Light of the Martyr",
        "/cast [mod:ctrl][@mouseover,exists,help,nodead][] Flash of Light",
        "/cast [@mouseover,exists,help,nodead] Holy Light",
      PostMacro={
      },
      KeyRelease={
        "/cast Devine Protection",
      },
    },
  },
}

so I tried it out and if its spammed fast enough its actually pretty good on mana

Yeah, seems to be grand. I use it for Ant Mythic and I am healing output enough to be 4/11M so far

Regards

good, but very hard on mana

Nice job pal, hope you hang around and update youre macros for bfa

How much MS do you use?

Hi

I do not use a AHK or other auto key pressure software for this one. I just manually hit it myself. Find it works better for Healing macros

I will give it a go when BFA comes out, never got ay beta access :frowning:

Regards

rather use Bestow faith on tank, just simply change it to cast @focus right ?

[quote quote=58746]… Can anyone help me with a MOD control for flash of Light?
…[/quote]

Sequences['Holy_Heals_Asc'] = {
-- This Sequence was exported from GSE 2.2.08.
  Author="Unknown Author",
  SpecID=65,
  Talents = "1332231",
  Default=1,
  MacroVersions = {
    [1] = {
     Combat=true,
      Trinket1=false,
      Trinket2=true,
      Head=false,
      Neck=false,
      Belt=false,
      Ring1=false,
      Ring2=false,
      StepFunction = "Sequential",
      KeyPress={
        "/cast [mod:ctrl,@mouseover,exists,help,nodead] Flash of Light",
        "/cast Rule of Law",
        "/cast Holy Avenger",
        "/cast Avenging Wrath",
      },
      PreMacro={
      },
        "/cast [@focustarget,harm,nodead] Judgment",
        "/cast Light of Dawn",
        "/cast [@mouseover,exists,help,nodead] Holy Shock",
        "/cast [@mouseover,exists,help,nodead] Bestow Faith",
        "/cast [@mouseover,exists,help,nodead] Light of the Martyr",
        "/cast [@mouseover,exists,help,nodead] Holy Light",
      PostMacro={
      },
      KeyRelease={
        "/cast Devine Protection",
      },
    },
  },
}

Here you are! m8 :slight_smile: And thx for awesome macro, for sure i use it as a base for my fresh shockadin sequence :stuck_out_tongue:

Is it possible to use this macro in 8.0.1?

UberNinja, doesnt work for me at present, still trying to troubleshoot why

Moved the Avenging Crusader/Wrath out to a manual cast as its part of the GCD and wasnt firing, therefore the macro was stuck at that point and its better to cast this manually.

Moved Holy avenger to the sequential section

Sequences['Holy_Heals_Asc'] = {
-- This Sequence was exported from GSE 2.1.01.
  Author="",
  SpecID=65,
  Talents = "1332231",
  Default=1,
  MacroVersions = {
    [1] = {
     Combat=true,
      Trinket1=false,
      Trinket2=true,
      Head=false,
      Neck=false,
      Belt=false,
      Ring1=false,
      Ring2=false,
      StepFunction = "Sequential",
      KeyPress={
        "/cast Rule of Law",
      },
      PreMacro={
      },
        "/cast [@focustarget,harm,nodead] Judgment",
        "/cast Light of Dawn",
        "/cast [@mouseover,exists,help,nodead] Holy Shock",
        "/cast [@mouseover,exists,help,nodead] Bestow Faith",
        "/cast [@mouseover,exists,help,nodead] Light of the Martyr",
        "/cast [mod:ctrl][@mouseover,exists,help,nodead][] Flash of Light",
        "/cast [@mouseover,exists,help,nodead] Holy Light",
	"/cast Holy Avenger",
      PostMacro={
      },
      KeyRelease={
        "/cast Devine Protection",
      },
    },
  },
}