anyone get this macro to work please

—Talents - 3 2 3 1 1 1 3—

Sequences[‘KTNHH’] = {
PreMacro=[[
/console Sound_EnableSFX 0
/assist [@focus,exists,nodead]
/targetenemy [noharm][dead]
/castsequence reset=target [@mouseover,exists,help,nodead] Renew, Flash
Heal, Heal, Heal
/cast [@mouseover,exists,help,nodead] Light of T’uure
]],
[[/cast [@player,nogroup] Body and Mind]],
[[/castsequence [@focus,exists,nodead] Body and Mind, Renew]],
[[/castsequence [@focus,exists,nodead] Prayer of Mending, Prayer of
Healing]],
[[/cast Circle of Healing]],
[[/cast [combat] Holy Word: Chastise]],
[[/cast [combat] Holy Fire]],
[[/cast [combat] Smite]],
PostMacro=[[
/cast [@player] Holy Word: Sanctify
/startattack
/cast [combat] Fade
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}

Try importing this - looks like you had the wrong brackets in places, I also setup for sequential and macroversion flags.

Sequences[‘KTNHH’] = {
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
        PreMacro={
          /console Sound_EnableSFX 0
          /assist [@focus,exists,nodead]
          /targetenemy [noharm][dead]
          /castsequence reset=target [@mouseover,exists,help,nodead] Renew, Flash, Heal, Heal, Heal
          /cast [@mouseover,exists,help,nodead] Light of T’uure
        },
        KeyPress={
          "/cast [@player,nogroup] Body and Mind",
          "/castsequence [@focus,exists,nodead] Body and Mind, Renew",
          "/castsequence [@focus,exists,nodead] Prayer of Mending, Prayer of Healing",
          "/cast Circle of Healing",
          "/cast [combat] Holy Word: Chastise",
          "/cast [combat] Holy Fire",
          "/cast [combat] Smite",
        },
        PostMacro={
          /cast [@player] Holy Word: Sanctify
          /startattack
          /cast [combat] Fade
          /script UIErrorsFrame:Hide();
          /console Sound_EnableSFX 1
      },
    },
  },
}

This is more of what you are looking for… it’s updated for GSE 2.xx

Sequences['KTNHH'] = {
  Author="Kaiyanwang@Saurfang",
  SpecID=257,
  Talents = "3231113",
  Default=1,
  MacroVersions = {
    [1] = {
      StepFunction = [[Sequential]],
      KeyPress={
        "/assist [@focus,exists,nodead]",
        "/targetenemy [noharm][dead]",
        "/castsequence [@mouseover,exists,help,nodead] Renew, Flash Heal, Heal, Heal",
        "/cast [@mouseover,exists,help,nodead] Light of T'uure",
      },
      PreMacro={
      },
        "/cast [@player,nogroup] Body and Mind",
        "/castsequence [@focus,exists,nodead] Body and Mind, Renew",
        "/castsequence [@focus,exists,nodead] Prayer of Mending, Prayer of Healing",
        "/cast Circle of Healing",
        "/cast [combat] Holy Word: Chastise",
        "/cast [combat] Holy Fire",
        "/cast [combat] Smite",
      PostMacro={
      },
      KeyRelease={
        "/cast [@player] Holy Word: Sanctify",
        "/startattack",
        "/cast [combat] Fade",
      },
    },
  },
}

cheers guys really appreciate the help