Jump to content
Sign in to follow this  
Phalogore

ability dependent on stance

Recommended Posts

is there any way in vanilla to cast a spell dependent of what stance i was ? for example by pressing a one key: if i was in Battle stance it casts Hamstring, if i was in Defencive stance it casts Shield Bash,  etc

Share this post


Link to post
Share on other sites

yea, here is a simple example for a macro - it does work without any macro extender:

/run stnc = {}; for i=1,3 do _,_,stnc[i] = GetShapeshiftFormInfo(i) end
/run if stnc[1] then CastSpellByName("Hamstring") end
/run if stnc[2] then CastSpellByName("Shield Bash") end
/run if stnc[3] then CastSpellByName("Charge") end
Stances for Warriors are:
 
1 = Battle Stance
2 = Defensive Stance
3 = Beserker Stance
Edited by Renew

Share this post


Link to post
Share on other sites

there is an addon for this but it will show you the first skill (in my example post Hamstring) only...

Share this post


Link to post
Share on other sites

ok, then can i switch stances by pressing 1 button ?

 

If current stance = battle stance --> cast defensive stance

if current stance = defensive stance --> cast berserker stance

if current stance = berserker stance --> cast battle stance

 

is it possible ?

Share this post


Link to post
Share on other sites

ok, then can i switch stances by pressing 1 button ?

 

If current stance = battle stance --> cast defensive stance

if current stance = defensive stance --> cast berserker stance

if current stance = berserker stance --> cast battle stance

 

is it possible ?

put your stances on your main action bar that switches when you change stance

Share this post


Link to post
Share on other sites

This is somewhat related, so I figure I'll ask here.

 

Is it possible to make a macro which behaves in the following way:

 

1) If you're in Berserker Stance, cast Battle Stance and then use Shield Bash.

2) If you're in either Battle Stance or Defensive Stance, then simply use Shield Bash.

 

 

(I would add the following in the beginning of the macro in order to make sure I had a 1H + shield equipped:

 

/eq <name of 1H>

/eq <name of shield>

)

 

Any help would be appreciated. :)

 

Edit: Nevermind. I completely forgot that Shield Bash and Pummel share cooldown timer... Pointless to make a macro for each. I'll just make a single macro for both.

Edited by lystigElysium

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×