UPDATED 11th MAY 2017
Hi guys. I’ve decided to go through a lot of my class macros as I have sometimes made minor adjustments as gear has improved and compared them to what I am currently running as well as ensure all is working and is 7.2 compliant. Also due to a lot of requests from many running the original Gnome Sequencer I will convert and post here for convenience.
Note if you toggle Blade Flurry manually, remove from the pre macro this line, /cancelaura Blade Flurry
or the macro will remove blade flurry as you apply it.
for an AOE version, duplicate the macro and change /cancelaura Blade Flurry
to /cast !blade Flurry
.
you notice I have Vanish in there, feel free to remove but I have it there for an interesting opener
the idea is you always start a fight in stealth, and for an opener, you will Ambush-Vanish-Ambush-regular rotation. furthermore during the fight, if vanish comes off CD you will vanish-ambush-continue with rotation.
First here is a version for wold questing and soloing where you wont vanish and reset target mid fight.
Sequences['out'] = {
-- This Sequence was exported from GSE 2.1.00.
Author="John Metz",
SpecID=260,
Talents = "1111321",
Help = [[For those with low haste or strugling with energy you can swap Deeper Strategem for Vigor]],
Default=1,
Icon='INV_Sword_30',
MacroVersions = {
[1] = {
StepFunction = "Sequential",
KeyPress={
"/targetenemy [noharm][dead]",
"/cast [mod:alt] Pistol Shot",
"/cancelaura Blade Flurry",
"/cast [stealth] Ambush",
},
PreMacro={
"/cast [nostealth,nocombat] Stealth",
"/cast [stealth] Ambush",
},
"/cast [combat] Adrenaline Rush",
"/cast [combat] Curse of the Dreadblades",
"/castsequence reset=1 Ghostly Strike, Saber Slash, !Slice and Dice, Saber Slash, Saber Slash, Run Through, Saber Slash, Saber Slash, Run Through, Ghostly Strike, Saber Slash, Run Through, Saber Slash, Run Through",
PostMacro={
},
KeyRelease={
"/cast [nostealth,nocombat] Stealth",
},
},
},
}
Version for Raids with vanish ambush cheese
Sequences['out'] = {
-- This Sequence was exported from GSE 2.1.00.
Author="John Metz",
SpecID=260,
Talents = "1111321",
Help = [[For those with low haste or strugling with energy you can swap Deeper Strategem for Vigor]],
Default=1,
Icon='INV_Sword_30',
MacroVersions = {
[1] = {
StepFunction = "Sequential",
KeyPress={
"/targetenemy [noharm][dead]",
"/cast [mod:alt] Pistol Shot",
"/cancelaura Blade Flurry",
"/cast [stealth] Ambush",
},
PreMacro={
"/cast [nostealth,nocombat] Stealth",
"/cast [stealth] Ambush",
},
"/cast [nostealth] Vanish",
"/cast [combat] Adrenaline Rush",
"/cast [combat] Curse of the Dreadblades",
"/castsequence reset=1 Ghostly Strike, Saber Slash, !Slice and Dice, Saber Slash, Saber Slash, Run Through, Saber Slash, Saber Slash, Run Through, Ghostly Strike, Saber Slash, Run Through, Saber Slash, Run Through",
PostMacro={
},
KeyRelease={
"/cast [nostealth,nocombat] Stealth",
},
},
},
}
for those rocking it oldskool with GS (removed vanish though as that trick won’t work with old GS)
Sequences["Out"] = {
PreMacro = [[
"/targetenemy [noharm][dead]",
"/cast [mod:alt] Pistol Shot",
"/cancelaura Blade Flurry",
"/cast [stealth] Ambush",
]],
"/cast [combat] Adrenaline Rush",
"/cast [combat] Curse of the Dreadblades",
"/cast [combat] Killing Spree",
"/castsequence reset=1 Ghostly Strike, Saber Slash, !Slice and Dice, Saber Slash, Saber Slash, Run Through, Saber Slash, Saber Slash, Run Through, Ghostly Strike, Saber Slash, Run Through, Saber Slash, Run Through"
PostMacro = [[
/use [combat]13
/use [combat]14
]],
}