Phalogore 0 Report post Posted December 7, 2016 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 0 Share this post Link to post Share on other sites
Renew 26 Report post Posted December 7, 2016 (edited) 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 December 7, 2016 by Renew 0 Share this post Link to post Share on other sites
Phalogore 0 Report post Posted December 7, 2016 tnx a lot may be u know some solution with #showtooltip option ? coz now i cant see ability cooldowns on macro icon 0 Share this post Link to post Share on other sites
Renew 26 Report post Posted December 7, 2016 there is an addon for this but it will show you the first skill (in my example post Hamstring) only... 0 Share this post Link to post Share on other sites
Phalogore 0 Report post Posted December 8, 2016 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 ? 0 Share this post Link to post Share on other sites
slippery 4 Report post Posted December 8, 2016 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 0 Share this post Link to post Share on other sites
Phalogore 0 Report post Posted December 8, 2016 my mistake renew's script works perfectly with stances 0 Share this post Link to post Share on other sites
lystigElysium 0 Report post Posted December 9, 2016 (edited) 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 December 9, 2016 by lystigElysium 0 Share this post Link to post Share on other sites