Need Help finishing this Arcane Macro, Please!

Been doing a lot of testing of various macros here, all good. I decided to re-create a macro from 7.25 that was from Macro Tool Kit. For me it does really great burst, however, after the sequence completes, it just stops. I’m trying to figure a way so it will continue the sequence, in some way, even if I have to make it “priority.” Ideas??

Sequences[‘Burst’] = {
– This Sequence was exported from GSE 2.2.03.
Author=“Burst”,
SpecID=62,
Talents = “2223131”,
Default=1,
MacroVersions = {
[1] = {
Combat=false,
StepFunction = “Sequential”,
KeyPress={
},
PreMacro={
“/targetenemy [noexists][noharm][dead]”,
},
“/cast !Prismatic Barrier”,
“/castsequence [nochanneling]reset=15 Mark of Aluneth, Rune of Power, Arcane Power, Presence of Mind, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Rune of Power, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Missiles, Arcane Missiles, Arcane Missiles, Arcane Barrage”,
PostMacro={
},
KeyRelease={
},
},
},
}

I have no clue when it comes to things like this but if i had to have a guess i would say its because it’s a castsequence line and this [nochanneling]reset=15 doesn’t work in the way you probably think it does,

Rest=15 doesn’t mean reset every 15 seconds anymore, it means reset this macro when i have not pressed a key for 15 seconds.

I’m probably way off the mark but as i said its only a guess

This hangs because Arcane Barrage is a proc, if it doesn’t proc your macro locks instantly.

Try This

Sequences['Burst'] = {
— This Sequence was exported from GSE 2.2.03.
Author="Burst",
SpecID=62,
Talents = "2223131",
Default=1,
MacroVersions = {
[1] = {
Combat=false,
StepFunction = "Priority",
KeyPress={
},
PreMacro={
"/targetenemy [noexists][noharm][dead]",
},
"/cast [nochanneling]Arcane Missiles"
"/cast !Prismatic Barrier",
"/castsequence [nochanneling]reset=15 Mark of Aluneth, Rune of Power, Arcane Power, Presence of Mind, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Rune of Power, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Blast, Arcane Barrage",
PostMacro={
},
KeyRelease={
},
},
},
}