Can someone tell me what im doing wrong?

Hi I am trying to make a GS macro to cast a set of spells but it does not seem to be working

Sequences['FireSingle'] = {
    PreMacro = [[
/targetenemy [noharm][dead]
    ]],
    "/castsequence [nochanneling] reset=target !Living Bomb,Fireball,Fireball,Fireball",
    PostMacro = [[
/use [combat]13
/use [combat]14
/startattck
    ]],
}

Try this, you had a couple format errors and reset doesn’t work in GS macros.

Sequences['FireSingle'] = {
PreMacro = [[
/targetenemy [noharm][dead]
]],
    ‘/castsequence [nochanneling] Living Bomb,Fireball,Fireball,Fireball’,
PostMacro = [[
/use [combat]13
/use [combat]14
/startattack
]],
}

Thanks a mil for the help I will try it and let you know
Thanks for the heads up about the reset I saw another one for Frost Mages now I know why its not working as expected

Thanks Healme it worked like a bomb :smiley: