My First Attempt at a gs-e macro period, :D

UPDATED for 7.1.5 and new GSE2

Sequences['Fire_Chuck'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Chuckfinley@Shattered Hand",
  SpecID=63,
  Talents = "1132113",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/cast [combat] Combustion",
        "/cast [combat] Fire Blast",
        "/cast [combat] Ice Floes",
        "/cast [mod:alt] Dragon's Breath",
      },
      PreMacro={
      },
        "/cast [nochanneling] Phoenix's Flames",
        "/cast [nochanneling] Living Bomb",
        "/cast [nochanneling] Blast Wave",
        "/cast [nochanneling] Fireball",
        "/cast Blazing Barrier",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}

I use Scorch for movement and pryoblast on seperate macros with stopcasting.

#showtooltip Scorch
/cast Fire Blast
/cast Scorch
Sequences['scorch_Chuck'] = {
-- This Sequence was exported from GSE 2.0.14.
  Author="Chuckfinley@Shattered Hand",
  SpecID=63,
  Talents = "1132113",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
      KeyPress={
        "/targetenemy [noharm][dead]",
        "/cast [combat] Combustion",
        "/cast [combat] Fire Blast",
        "/cast [mod:alt] Dragon's Breath",
      },
      PreMacro={
      },
        "/cast [nochanneling] Phoenix's Flames",
        "/cast [nochanneling] Living Bomb",
        "/cast [nochanneling] Blast Wave",
        "/cast [nochanneling] Scorch",
        "/cast Blazing Barrier",
      PostMacro={
      },
      KeyRelease={
      },
    },
  },
}


#showtooltip Pyroblast
/stopcasting
/cast Pyroblast`

Ice Barrier is on the global cooldown, so when your macro gets to the postmacro section the GCD will be cycling already. You’ll need to put it into the main body of the macro to get it to go off reliably.

Ice Barrier is on the global cooldown, so when your macro gets to the postmacro section the GCD will be cycling already. You’ll need to put it into the main body of the macro to get it to go off reliably.

Cool, thanks man:D

You can also slap a “mod:” in there to allow you to put IB up whenver you want.

i dont have success with mods in the macros. even when i use others. i dont know why:(

I figured out that the keybind for what ever you want as a mod needs to be cleared before being able to use it in the macro

Blazing Barrier not work