GS Outlaw In testing (7-25-16)

I’ve been playing my rogue some and looked at Icy to try and update a few alts I’ve been playing.
I’m i708 w/o ring while testing, so I’m sure others with ring will have way better numbers then me.
I’ll try to get more testing in soon and update if my numbers go up any.

Talents: 2113322

Sequences['Outlaw'] = {
StepFunction = [[
		limit = limit or 1
		if step == limit then
			limit = limit % #macros + 1
			step = 1
		else
			step = step % #macros + 1
		end
	]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast [nostealth,nocombat]Stealth
/cast [combat] Marked for Death
]],
'/castsequence Saber Slash',
'/castsequence Saber Slash, Run Through, Saber Slash, Pistol Shot',
'/castsequence Roll the Bones, Saber Slash, Saber Slash, Saber Slash, Pistol Shot, Run Through, Saber Slash, Saber Slash, Saber Slash, Pistol Shot',
'/castsequence Saber Slash, Saber Slash, Saber Slash, Saber Slash, Saber Slash, Pistol Shot',
'/cast [@focus] Tricks of the Trade',
PostMacro = [[
/use [combat] 13
/use [combat] 14
]],
}

I tweaked it a touch, added a AOE version which is the same but puts up blade flurry.
the small tweak was swapping out Marked for Death with Death from Above, stacking haste and the 4 pcs lfr set for energy regen,

also added stealth opener for ambush and cheapshot


Sequences['AOEOutlaw'] = {
StepFunction = [[
		limit = limit or 1
		if step == limit then
			limit = limit % #macros + 1
			step = 1
		else
			step = step % #macros + 1
		end
	]],
    PreMacro = [[
/targetenemy [noharm][dead]
/cast [nomod] !Blade Flurry
/targetenemy [noharm][dead]
/cast [nocombat,nostealth] stealth
/cast [stealth] Ambush
/cast [stealth] Cheap Shot
    ]],
'/cast Adrenaline Rush',
'/castsequence Saber Slash',
'/castsequence Saber Slash, Run Through, Saber Slash, Pistol Shot',
'/castsequence Roll the Bones, Saber Slash, Saber Slash, Saber Slash, Pistol Shot, Run Through, Saber Slash, Saber Slash, Saber Slash, Pistol Shot',
'/castsequence Saber Slash, Saber Slash, Saber Slash, Saber Slash, Saber Slash, Pistol Shot, Death from above',
'/cast [@focus] Tricks of the Trade',
  PostMacro = [[
/use [combat] 13
/use [combat]14
/script UIErrorsFrame:Clear()
    ]],
}

Sequences['Outlaw'] = {
StepFunction = [[
		limit = limit or 1
		if step == limit then
			limit = limit % #macros + 1
			step = 1
		else
			step = step % #macros + 1
		end
	]],
PreMacro = [[
/targetenemy [noharm][dead]
/cancelaura Blade Flurry
/targetenemy [noharm][dead]
/cast [nocombat,nostealth] stealth
/cast [stealth] Ambush
/cast [stealth] Cheap Shot
]],
'/cast Adrenaline Rush',
'/castsequence Saber Slash',
'/castsequence Saber Slash, Run Through, Saber Slash, Pistol Shot',
'/castsequence Roll the Bones, Saber Slash, Saber Slash, Saber Slash, Pistol Shot, Run Through, Saber Slash, Saber Slash, Saber Slash, Pistol Shot',
'/castsequence Saber Slash, Saber Slash, Saber Slash, Saber Slash, Saber Slash, Pistol Shot, Death from above',
'/cast [@focus] Tricks of the Trade',
PostMacro = [[
/use [combat] 13
/use [combat] 14
]],
}