Question about druid macro

Hey sorry if this is the wrong forum

is it possible to make a condition that i only use a spell if im in a certain shapeshift form?

for example if im not in cat form i want to cast cat form and then dash but if im in catform i just want to cast dash

currently im using this
#showtooltip Dash
/cast !Cat Form
/cast Dash

its not ideal though because it casts cat form when im already in catform

your macro shouldn’t cast cat form when you are already in cat form, cause that’s what the exclamation mark does ("/cast !Cat Form" means use Cat form if it’s not already acrive)

However, the exclamation mark in macros is currently bugged in the pre-patch, there have been a few posts about it on other sites. It is unknown if or when blizzard will fix it.

To circumvent it you can instead use

/cast [noform:3] Cat Form

which should be working despite the bug. Whenever the bug is fixed, your original macro should work as well.

2 Likes

thanks mate :slight_smile:

/cast [form:3] Dash; [form:1] Enrage; [form:0] Healing Touch (Rank 4)

example of using the same button for different spells depending on form

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.