[quote quote=20881]Ok. I feel dumb, because I CANNOT get these macros to work. What am I doing wrong? I have downloaded GnomeSequencer, extracted it to the Interface>Addons folder. Renamed the ExamplSequences.lua file to Sequences.lua, copy and pasted the 2 macros (Prot and Sera) into the bottom of the file, named new blank macros Prot and Sera, but they are not doing anything.
Sequences.lua copy and paste below.
local _, Sequences = ... -- Don't touch this
----
Sequences[’Prot’] = {
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 [nomod] Crusader Strike’,
’/cast [mod] Hammer of the Righteous’,
’/castsequence Sacred Shield,Judgment,Judgment,Judgment’,
”/cast Avenger’s Shield”,
’/cast [nomod,@player] Execution Sentence’,
’/cast [mod] Execution Sentence’,
’/cast Hammer of Wrath’,
’/cast Consecration’,
’/cast Holy Wrath’,
PostMacro = [[
/cast Shield of the Righteous
/cast divine protection
/startattack
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}
----
Sequences[’Sera’] = {
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 [mod] Crusader Strike’,
’/cast [nomod] Hammer of the Righteous’,
’/castsequence Sacred Shield,Judgment,Judgment,Judgment’,
”/cast Avenger’s Shield”,
’/cast [mod,@player] Execution Sentence’,
’/cast [nomod] Execution Sentence’,
’/cast Hammer of Wrath’,
’/cast Consecration’,
’/cast Holy Wrath’,
PostMacro = [[
/castsequence Seraphim, Shield of the Righteous, Shield of the Righteous, Shield of the Righteous
/cast divine protection
/startattack
/use [combat]13
/use [combat]14
/script UIErrorsFrame:Hide();
/console Sound_EnableSFX 1
]],
}
[/quote]
From what I can see it is the font style of the ’ that is the issue. Are you using Notepad ++ or just windows notepad?