Here’s the macro
#showtooltip
/cast [stance2,combat] Wild Charge;[nostance,combat] Cat Form; [stance:1] Cat Form; [nocombat, nostealth] Prowl
It used to work, but currently, if I go into combat in caster, it’s not shifting to cat and I’m failing to find my mistake.
I just tested your macro and it was stuck wanting to Wild Charge. I’ve always used ‘form’ instead of ‘stance’ so changed it to the below and it worked as expected.
(I also added ‘stealth’ as an or condition to the ‘Wild Charge’ portion to get rid of the ‘?’ when prowling, delete if it doesn’t suit your purpose).
#showtooltip
/cast [form:2,combat][stealth] Wild Charge;[noform,combat] Cat Form; [form:1] Cat Form; [nocombat, nostealth] Prowl
2 Likes
You were missing a :
in that stance:2
I’d probably rearrange things to:
#showtooltip
/cast [nocombat,nostealth] Prowl; [known:102401,form:2,combat] Wild Charge; Cat Form
3 Likes