Gnome Sequencer {Paladin} Grateful for Assistance am I

Merry Meet!

Abundantly grateful for illumination, on what I am doing wrong, gifted me, am I.

PROBLEM:

  • While in the game, I created a Macro with one of the sequences name's that I gave.
  • The macro fails to update with anything. It did at first last night but now it fails; That is it fails to 'update' the macro with whatever macro code Gnome Sequencer uses to pull my relevant sequence from the sequence.lua
  • The Macro persists with the '?' as a graphic instead of something more relevant.

MY ACTIONS:

  • I downloaded and installed the [Gnome Sequencer] as the FAQ explained.
  • I renamed ExampleSequences.Lua file to Sequences.lua.
  • I pasted a few sequences that I found in Retribution and Protection forums. Specifically {Healme} and {Doom}'s. I altered them slightly from how they explained the macro.
  • To clarify, I went to the end of what was ExampleSequences.lua where there is the } sign all by itself. I hit enter twice and then pasted the following code.
``` Sequences['PldnRetPvEST'] = { StepFunction = [[ limit = limit or 1 if step == limit then limit = limit % #macros + 1 step = 1 else step = step % #macros + 1 end ]], PreMacro = [[ /console Sound_EnableSFX 0 /targetenemy [noharm][dead] /cast [nostance: 1] Seal of Truth ]], '/cast Hammer of Wrath', '/cast Crusader Strike', '/cast Judgment', '/cast Exorcism', '/cast Execution Sentence', PostMacro = [[ /cast Templar's Verdict /cast Avenging Wrath /use 13 /use 14 /startattck /script UIErrorsFrame:Hide(); /console Sound_EnableSFX 1 ]], }

Sequences[‘PldnRetPvEAE’] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
/cast [nostance: 2] Seal of Righteousness
]],
‘/cast Exorcism’,
‘/cast Hammer of Wrath’,
‘/cast Crusader Strike’,
‘/cast Judgment’,
‘/cast Divine Storm’,
‘/cast Execution Sentence’,
PostMacro = [[
/cast Divine Storm
/cast Avenging Wrath
/use 13
/use 14
/startattck
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}

Sequences[‘PldnPrtPvEST’] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
‘/cast Holy Wrath’,
‘/cast Crusader Strike’,
‘/castsequence Judgment,Judgment,Judgment’,
‘/cast Avenger’s Shield’,
‘/cast Hammer of Wrath’,
‘/cast Consecration’,
‘/cast Holy Prism’,
PostMacro = [[
/cast [@player]Sacred Shield
/cast Shield of the Righteous
/cast Divine Protection
/startattack
/use 13
/use 14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}

Sequences[‘PldnPrtPvEAE’] = {
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/console Sound_EnableSFX 0
/targetenemy [noharm][dead]
]],
‘/cast Holy Wrath’,
‘/cast Hammer of the Righteous’,
‘/castsequence Judgment,Judgment,Judgment,Eternal Flame’,
‘/cast Avenger’s Shield’,
‘/cast Hammer of Wrath’,
‘/cast Consecration’,
‘/cast [@player] Holy Prism’,
PostMacro = [[
/cast Shield of the Righteous
/cast divine protection
/startattack
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}

Sequences[‘PBbblHrthstn’] = {
‘/cast Divine Shield’, – macro 1
‘/castsequence Garrison Hearthstone, Hearthstone, Admiral’s Compass’, – macro 2
}




I am using <strong>Macro ToolKit</strong> as well.  Incase a conflict between the program cause this error, I disabled it but GnomeSequencer still refused to work.

the problen lies in the last macro entered

Sequences['PBbblHrthstn'] = {
    '/cast Divine Shield', -- macro 1
    '/castsequence Garrison Hearthstone, Hearthstone, Admiral's Compass', -- macro 2
}

this is not proper macro function as u dont specify an order to use the macro’s it would be better to delete this sequence and make them as ingame macro’s

got more wrong that that last macro got bunch syntax errors tried each 1 , and each had an error sorry didnt write em down, it looks good not sure what it is

Grateful for your help, am I.

I am moving this over to the User Interface/Addons topic because that is where someone else posted a similar question and maybe it is more appropriate for me to do so.