PDA

View Full Version : Quick Warrior Macro Help


owlx
10-05-2007, 02:59 PM
I had to do a delete and re-install to resolve some problems so I lost all my macros. I didn't have anything that complicated.

All I am looking for is a macro that will cast an ability or switch me to the appropriate stance and then cast the ability.

For example:

cast charge, if not in battle stance, cast battle stance, then cast charge.

Dark Matter
10-05-2007, 03:15 PM
Try:

/cast [stance:1/2,combat] Berserker Stance
/stopcasting
/cast [stance:3,combat] Intercept
/stopcasting
/cast [stance:2/3,nocombat] Battle Stance
/stopcasting
/cast [stance:1,nocombat] Charge
/stopcasting


Hopefully:
If you are in combat, this macro will make sure that you are in berserker stance, then cast intercept. If you are not in combat, you will be placed into battle stance, then charge.

owlx
10-05-2007, 04:02 PM
thank you.

I don't need anything that will check 'in combat,' just something simple that will check appropriate stance.

I remember it being more simple than that in the past.

/cast Charge [Battle Stance] ........something like this but a little more.

Dark Matter
10-05-2007, 05:46 PM
OK,

Stances are for all three classes as far as macros are concerned. For Warriors:
Stance 1 = Battle
Stance 2 = defensive
Stance 3 = Berserker.

So, just edit the macro above:

/cast [stance:2/3] Battle Stance
/stopcasting
/cast [stance:1] Charge


If you are in berserker or defensive stance, it will change you to battle and then cast charge.

If you are already in Battle stance, it will just cast charge.
----

If you never learnt Defensive stance, then you will only know two stances, 1 will be Battle and 2 will be Berserker. In that case just edit out the /3 option on the first line (/cast [stance:2] Battle Stance)


There are 6 stances as far as macros are concerned, but only Druids need to know all of them. In order, 1-6 they are (for druids only) Bear, Aquatic, Cat, Travel, Moonkin/Tree and Flight form.

DM

Tunga
10-05-2007, 06:04 PM
There shouldn't be any need for all those /stopcasting commands.

Dark Matter
10-05-2007, 06:11 PM
If you don't put it in, you'll have to press the macro twice.

Tunga
10-05-2007, 11:12 PM
Oh okay, since stances don't activate global cooldown, makes sense.