Originally Posted by
Mynewt
Wow Awesome job on the prot warrior script absolutely loving it, when you have a moment and i'm sure it'll take a while, could you add a little more functionailit to the arms warrior script.
I was wondring if the following features could be added:
Victory Rush
Change to Berserker Stance and pummel on target casting, then back to battle stance
Use of Enraged Regeneration, (perhaps use of health stone to).
Heya, past those lines wherever you want in the script 
Code:
/run if UnitHealth('player')<10000 and GetSpellCooldown("Enraged Regeneration")==0 and IsUsableSpell("Enraged Regeneration")==1 then CastSpellByName("Enraged Regeneration") end
/run if GetSpellCooldown("Victory Rush")==0 and IsUsableSpell("Victory Rush")==1 then CastSpellByName("Victory Rush") end
/run if UnitCastingInfo("target") and GetSpellCooldown("Pummel")==0 then RunMacroText("/castsequence Berserker Stance, Pummel, Battle Stance") end
/run if UnitHealth('player')<10000 then RunMacroText("/use INSERT-NAME-OF-HEALTHSTONE") end
And this one in the beginning of the script if they above ain't going back to Battle Stance
Code:
/run if GetShapeshiftForm()==3 then CastSpellByName("Battle Stance") end
and if that doesn't work then
/run if GetShapeshiftForm("Battle Stance")==0 then CastSpellByName("Battle Stance") end