7.1.5 - Healing Macros (GSE2)

Hey guys im fairly new to GSE2, but i work with programming daily. Ive put together a few macros, that i find very usefull. My holy macros are split up into three. One for slow healing, one for fast healing, and one for dps (shockadin). I choose not to put my AOE healing in macros, as i like to have control of those. Same goes for cooldowns.

The first one is for slow healing.

Sequences['HPa1'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Xäphan@Tarren Mill",
  SpecID=65,
  Talents = "1133122",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      LoopLimit=1,
      KeyPress={
      },
      PreMacro={
      },
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Holy Shock",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Bestow Faith",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Holy Light",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Bestow Faith",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Holy Shock",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

The second one is for fast healing:

Sequences['HPa2'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Xäphan@Tarren Mill",
  SpecID=65,
  Talents = "1133122",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      LoopLimit=1,
      KeyPress={
      },
      PreMacro={
      },
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Holy Shock",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Bestow Faith",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Flash of Light",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Bestow Faith",
        "/cast [@mouseover,help,nodead][exists,nodead][@player] Holy Shock",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

The third one is for dps:

Sequences['HPa3'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Xäphan@Tarren Mill",
  SpecID=65,
  Talents = "1133122",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = "Priority",
      LoopLimit=1,
      KeyPress={
        "/targetenemy [noharm][dead]",
      },
      PreMacro={
      },
        "/cast Holy Shock",
        "/cast Judgment",
        "/cast Consecration",
        "/cast Crusader Strike",
        "/cast Consecration",
        "/cast Judgment",
        "/cast Holy Shock",
      PostMacro={
      },
      KeyRelease={
        "/startattack",
      },
    },
  },
}

is there a way i can use clique for these , like 1 on left mouse and the other on right?

: )