Druid form condition spell cast

hi there

is it possible to create a macro to cast rejuv when not in bear or cat
When in bear to cast growl
When in cat to cast rip

Have been using
#showtooltip
/cast [form:0,@mouseover,help,nodead][] Rejuvenation; [form:1,@mouseover][] Growl

The problem is that while in bear, it casts still casts rejuv

1 Like

#showtooltip
/cast [form:0,@mouseover,help,nodead][form:0] Rejuvenation; [@mouseover][] Growl

OMg thank you

You’re also missing an existence check for the growl mouseover.

#showtooltip
/cast [form:1,@mouseover,harm,nodead] [form:1] Growl; [@mouseover,help,nodead] [] Rejuvenation
1 Like