My new macro i been working on GW

hi
This is a macro im working on pls tell me if i can improve it
2,1,3,3,2,2,3

Sequences['ST-GladW'] = { 
PreMacro = [[
/console Sound_EnableSFX 0
/cast [combat] Berserker Rage
/cast [combat] Bloodbath
/cast [combat] Demoralizing Shout
/castsequence reset=10 Shield Charge
]],
	'/cast Charge',
	'/cast Shield Slam',
	'/cast Revenge',
	'/cast Devastate',
	'/cast Heroic Strike',
PostMacro = [[
/startattack
/use [combat]13
/use [combat]14
/console Sound_EnableSFX 1
]],
}

Jimmy

every time i try one of your macros, or any macro on this site for that matter the macro announces everything it is doing in trade chat. can you tell me why? i’m simply copying and pasting them so i know it’s not me putting the macro in wrong. a quick response would be great

[quote quote=27175]every time i try one of your macros, or any macro on this site for that matter the macro announces everything it is doing in trade chat. can you tell me why? i’m simply copying and pasting them so i know it’s not me putting the macro in wrong. a quick response would be great
[/quote]

Tell what you have done step for step!

Hi,
Im not in the game anymore but when I used to play Glad in arena this was my macro.
Talents needed are Heavy repercussions,Avatar and obviously Gladiators Resolve.
I only had one on use damage trinket which was in slot 13.
Also used to use hindering strikes glyph for the slow.


Sequences["Glad"] = { 
PreMacro = [[
/cast charge
]],
	StepFunction = [[
		stepa = "231413"

		limit = string.len(stepa) or 1
		if stepc == nil then
			stepc = 1
		end
		if stepc >= limit then
			stepc = 1
		else
			stepc = stepc + 1
		end
		step = tonumber(strsub (stepa, stepc, stepc))
	]],

	-- Macro 1
	[[
/run("Executing macro 1!")
/cast Revenge
	]],
	
	-- Macro 2
	[[
/run("Executing macro 2!")
/cast Shield Charge
/use [combat] avatar	

	]],
	
	-- Macro 3
	[[
/run("Executing macro 3!")
/cast Shield Slam
/cast heroic strike
	]],
	
	-- Macro 4
	[[
/run("Executing macro 4!")
/cast Devastate
	]],
	
   	
	PostMacro = [[
/cast [combat] Berserker Rage
/use [combat] 13
]],
}