Issue when running GS-E macro from different spec

This isn’t a huge issue and it is probably a corner case however I like to farm in resto spec using cat form. When farming old content I get the feral speed boost. The issue is when using a feral macro in resto the macro spams chat with the macro code instead of doing the macro.

If i mind right, there would be a missing / somewhere in the macros or tags are not closed correctly.

Would you mind posting what you’re using?

It works when I’m in feral however it spams the macro code when in resto.

Sequences['feralsingle'] = {
author="lloskka www.wowlazymacros.com",
specID=103,
version=1,
source = "GS-myMacros",
authorversion = "v1",
helpTxt = "Talents 2331223",
lang="enUS",
PreMacro=[[
/cast Wild Charge
/targetenemy [noharm][dead]
/run sfx=GetCVar("Sound_EnableSFX");
]],
"/castsequence  reset=combat  Rake, Shred, Shred, Shred, Rip, Rake, Shred, Shred, Shred, Ferocious Bite, Rake, Shred, Shred, Shred, Ferocious Bite",
"/use [combat] Berserk",
"/use [combat] Survival Instincts",
"/cast Incarnation: King of the Jungle",
PostMacro=[[
/cast Tiger's Fury
/use [combat] 11
/use [combat] 12
]],
}

If it works in Feral but not Resto the only thing i would try is changing the specID to 105

103 = Feral while 105 = Resto

Or change it to specID=11, – (Druid)

I’d also dump this line as it doesnt do anything
/run sfx=GetCVar(“Sound_EnableSFX”);
this just puts a O or a 1 in sfx but doesnt actually change anything.

and these next two lines are ignored as they are global Interface Options (ESC | Interface | Addons | GS-E will be the bottom of the list)

/use [combat] 11
/use [combat] 12

Change these to casts:

"/cast [combat] Berserk",
"/cast [combat] Survival Instincts",