Hello all, So I’ve tried making a macro to increase my own DPS, taking in advice from the how to threads I’ve come up with this. I couldn’t get past 18k DPS with most of the Macros I’ve tried so I create my own sequence and I managed to hit 25k DPS, I’m not sure if this macro translates better with higher ilvls but I’d Like for you all to give it a shot.
Talents are, 2133323
Sequences['Gladiator'] = {
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 Charge
/use !Attack
]],
'/castsequence reset=target Shield Charge,Revenge',
'/use Shield Slam',
'/use Devastate',
'/castsequence reset=target Devastate,Shield Slam',
'/castsequence reset=target Devastate,Revenge',
'/use Devastate',
PostMacro = [[
/use [combat] Execute
/use [combat] Heroic Strike
/use [combat] Bloodbath
/use [combat] Blood Fury
/use [combat] Dragon's Roar
/use [combat] 13
/script UIErrorsFrame:Hide();
]],
}
I set up a StepFunction Macro so it would use Shield Slam and Revenge as often as possible. In the post Macro I’ve set up Heroic Strike and Execute with Execute taking priority when available.
Please give it a try and let me know your DPS and I’ll keep improving on it.