-
hunter aspect question
i wanted to know if there is any way to tell which hunter aspect is up so I can switch it at the start of a fight with a macro like
Code:
/cast [???:aspect of the non-hawk] aspect of the hawk
/startattack
I know some of the others like pallys or warriors have a stance or something like that.
-
That would be conditional checking that is not allowed. But you could do something like the following:
Code:
/cast [combat] Aspect of the Hawk; Aspect of the Cheetah
If you're in combat it will cast AotH, otherwise, if you're running around, cast AotC.
-
Blizzard added a new macro fuction (exclamation point). It is used to turn on stuff (that is toggleable) and not to turn it off, no matter what. I used this on my hunters when some of them would have an aspect on and some wouldn't. So when I mashed the aspect key, some that had it would turn it off and others would turn theirs on. Crap, not what I wanted. So:
/cast !Aspect of the Hawk
Should turn it on and not turn it off. You can put it in a castsequence if you want also.