Druid Bash/Charge macro with focus modifier HELP

I need a macro that Mighty Bash’s my target or focus (with modifier) and also charges my target or focus (with modifier), but only if I’m in Bear or Cat form. This is what I have so far:

#showtooltip
/use [mod:shift,@focus,harm,nodead][@mouseover,harm,nodead][form:1/2,harm,nodead] Wild Charge
/use [mod:shift,@focus,harm,nodead][@mouseover,harm,nodead][] Mighty Bash

It does everything I need, except it still uses wild charge out of bear and cat form. I would greatly appreciate any help.

You need to put the form conditional in each conditional block where you want it to apply:

#showtooltip
/use [form:1/2,mod:shift,@focus,harm,nodead][form:1/2,@mouseover,harm,nodead][form:1/2,harm,nodead] Wild Charge
/use [mod:shift,@focus,harm,nodead][@mouseover,harm,nodead][] Mighty Bash
1 Like

You’re awesome, thank you so much! This works perfectly.