Macro Help =(

I downloaded the new version of GSE and added in my 4 macros and only 1 work and I have a line error on each. But this is not HTML and I can not figure out what to do with it. Would love some help, I am spoiled on this add on lol.

first one
I tried to redo the macro and now I get an “Unable to import” and my error says Storage [String “Storage”]: 10 unexpected symbol near ‘/’

Sequences[‘DB_Single_Marls’] = {
author=“Nano”,
specID=254,
helpTxt = ‘Talents: 1113121’,
PreMacro=[[
/targetenemy [noharm][dead]
/cast Trueshot
]],
icon=‘Ability_Hunter_FocusedAim’,
/cast [nochanneling] Sidewinders’,
/cast [nochanneling] !Aimed Shot’,
/cast [nochanneling] !Marked Shot’,
/cast [nochanneling] Windburst’,
/cast [nochanneling] !Aimed Shot’,
/cast [nochanneling] Sidewinders’,
/cast [nochanneling] !Aimed Shot’,
/cast [nochanneling] !Marked Shot’,
/cast [nochanneling] !Aimed Shot’,
PostMacro=[[
/startattack
/petattack
]],
}

Second
Storage [String “Storage”]: 12 unexpected symbol near ‘/’

Sequences[‘BMAE’] = {
specID = 253,
author = “Ursila”,
helpTxt = “BMAOE Talent 2213312”,
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/startattack
/petautocastoff [group] Growl
/petautocaston [nogroup] growl
]],
/castsequence Multi-Shot, Kill Command"
/cast [nochanneling] Multi-Shot’,
/cast [nochanneling] A Murder of Crows’,
/cast !Dire Beast",
/cast Cobra Shot",
/cast Bestial Wrath",
PostMacro = [[
/startattack
]],
}

my third broken one

Storage [String “Storage”]: 14 unexpected symbol near ‘/’

Sequences[‘BMS’] = {
specID = 253,
author = “Ursila”,
helpTxt = “Single Target - Talent: 2213312”,
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/startattack
/petattack [@target,harm]
/petautocastoff [group] Growl
/petautocaston [nogroup] Growl
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
]],
/castsequence Cobra Shot, Kill Command"
/cast [nochanneling] Bestial Wrath’,
/cast [nochanneling] !Dire Beast’,
PostMacro = [[
/startattack
/petattack
/cast Aspect of the Wild
]],
}

These worked in the old setup but can not figure out why they won’t in the new one. My 4th macro works and I see how it got all split up in the new format, I just can’t figure these out and I am sure it is easy if I can ever understand how the text is set up like nochanneling and the need for the ! .

Anyway thank you for the help. Been working on it all week =(

I tried to fix most of the errors and got this. All it says now is Error at line 23

Sequences[‘DB_Single_Marls’] = {
Author="Nano",
SpecID=254,
Talents = "1113121",
PreMacro={
"/targetenemy [noharm][dead]",
"/cast Trueshot",
},
'/cast [nochanneling] Sidewinders',
'/cast [nochanneling] !Aimed Shot',
'/cast [nochanneling] !Marked Shot',
'/cast [nochanneling] Windburst',
'/cast [nochanneling] !Aimed Shot',
'/cast [nochanneling] Sidewinders',
'/cast [nochanneling] !Aimed Shot',
'/cast [nochanneling] !Marked Shot',
'/cast [nochanneling] !Aimed Shot',
PostMacro=[[
/startattack
/petattack
},
}

It’s line 21 that’s causing the issue :slight_smile:

You have PostMacro=[[
but you forgot to close those brackets off.

It needs to be

PostMacro=[[
/startattack
/petattack
]],
}

That will fix it

But when that is changed and click import, nothing happens.

PreMacro is broken too, as well as Sequence

PreMacro={
"/targetenemy [noharm][dead]",
"/cast Trueshot",
},

Again, that needs to use [[

PreMacro=[[
"/targetenemy [noharm][dead]",
"/cast Trueshot",
]],

Here it is fixed:

Sequences['DB_Single_Marls'] = {
Author="Nano",
SpecID=254,
Talents = "1113121",
PreMacro=[[
"/targetenemy [noharm][dead]",
"/cast Trueshot",
]],
'/cast [nochanneling] Sidewinders',
'/cast [nochanneling] !Aimed Shot',
'/cast [nochanneling] !Marked Shot',
'/cast [nochanneling] Windburst',
'/cast [nochanneling] !Aimed Shot',
'/cast [nochanneling] Sidewinders',
'/cast [nochanneling] !Aimed Shot',
'/cast [nochanneling] !Marked Shot',
'/cast [nochanneling] !Aimed Shot',
PostMacro=[[
/startattack
/petattack
]],
}

The second one seems to mostly be a issue at line 12

Sequences[‘BMAE’] = {
specID = 253,
author = "Ursila",
helpTxt = "BMAOE Talent 2213312",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/startattack
/petautocastoff [group] Growl
/petautocaston [nogroup] growl
]],
/castsequence Multi-Shot, Kill Command",
/cast [nochanneling] Multi-Shot’,
/cast [nochanneling] A Murder of Crows’,
/cast !Dire Beast",
/cast Cobra Shot",
/cast Bestial Wrath",
PostMacro = [[
/startattack
]],
}

The Third one has the error at line 14, Kill command again

Sequences[‘BMS’] = {
specID = 253,
author = "Ursila",
helpTxt = "Single Target – Talent: 2213312",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/startattack
/petattack [@target,harm]
/petautocastoff [group] Growl
/petautocaston [nogroup] Growl
/cast [target=focus, exists, nodead], [target=pet, exists, nodead] Misdirection
]],
/castsequence Cobra Shot, Kill Command"
/cast [nochanneling] Bestial Wrath’,
/cast [nochanneling] !Dire Beast’,
PostMacro = [[
/startattack
/petattack
/cast Aspect of the Wild
]],
}

Here you go, I have fixed all the errors that should exist…

Sequences['DB_Single_Marls'] = {
author="Nano",
specID=254,
helpTxt = 'Talents: 1113121',
icon='Ability_Hunter_FocusedAim',
PreMacro=[[
/targetenemy [noharm][dead]
/cast Trueshot
]],
"/cast [nochanneling] Sidewinders",
"/cast [nochanneling] !Aimed Shot",
"/cast [nochanneling] !Marked Shot",
"/cast [nochanneling] Windburst",
"/cast [nochanneling] !Aimed Shot",
"/cast [nochanneling] Sidewinders",
"/cast [nochanneling] !Aimed Shot",
"/cast [nochanneling] !Marked Shot",
"/cast [nochanneling] !Aimed Shot",
PostMacro=[[
/startattack
/petattack
]],
}
Sequences['MAE'] = {
specID = 253,
author = "Ursila",
helpTxt = "BMAOE Talent 2213312",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/startattack
/petautocastoff [group] Growl
/petautocaston [nogroup] growl
]],
"/castsequence Multi-Shot, Kill Command",
"/cast [nochanneling] Multi-Shot",
"/cast [nochanneling] A Murder of Crows",
"/cast !Dire Beast",
"/cast Cobra Shot",
"/cast Bestial Wrath",
PostMacro = [[
/startattack
]],
}
Sequences['BMS'] = {
specID = 253,
author = "Ursila",
helpTxt = "Single Target – Talent: 2213312",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/startattack
/petattack [@target,harm]
/petautocastoff [group] Growl
/petautocaston [nogroup] Growl
/cast [target=focus, exists, nodead],[target=pet, exists, nodead] Misdirection
]],
"/castsequence Cobra Shot, Kill Command",
"/cast [nochanneling] Bestial Wrath",
"/cast [nochanneling] !Dire Beast",
PostMacro = [[
/startattack
/petattack
/cast Aspect of the Wild
]],
}