Hello there.
I’ve got a problem that I can’t overcome, regarding the Overpower warrior skill.
I’ve crafted a handy macro that looks like this:
#showtooltip [stance:1/3] Mortal Strike; [stance:2] Heroic Strike;
/startattack
/cast [stance:1/3] Mortal Strike; [stance:2] Heroic Strike;
And it works perfectly as is.
Yet I wanted to weave in Overpower into it. Knowing that it shares GCD with the other 2 skills I’ve wanted to add it to the pool, but it turns out, that it completely blocks off the execution of the macro at all for reason I don’t understand.
I’ve modified line 3 of my macro like this:
/cast Overpower; [stance:1/3] Mortal Strike;… (rest unchanged).
It didn’t work. It ONLY let me perform Overpower alone.
Then I tried the parallel skill activation by putting a lone
/cast Overpower
at the very bottom of my original macro. Didn’t work either.
My question is:
Is it possible at all, to make a Classic Wow working macro to use and display Mortal Strike, unless Overpower is active, then using overpower isntead?
That’s what I want to achieve:
Button pressed > If Overpower is active > Overpower > END.
Button pressed >If Overpower is not active > Mortal Strike if not def stance OR Heroic Strike if in def stance.
Please, help or at least explain to me why it’s impossible to achieve!