Druid Macro help

Hi,

I’m looking for a macro that will cast rejuvenation when I have an ally or no target and I’m in any form, shred when I’m in cat form and have an enemy as my target, or mangle when I’m in bear form and have an enemy as my target. I know I can do this in two separate macros but I was looking to combine this.

Thanks,

Maybe something like this?

#showtooltip
/cast [help] Rejuvenation
/cast [stance:1, harm] Shred; [stance:3, harm] Mangle

You want a variant on this:

#showtooltip
/cast [mod:alt,@player] [@mouseover,help,nodead] [help] Rejuvenation; [form:1,harm] Mangle; [form:2,harm] Shred; Rejuvenation

#showtooltip
/cast [form:1,harm] Shred;[form:3,harm]Mangle;[help,exists][]rejuvenation

You only need one cast command and most times only need a space between the command the rest of the string. Putting rejuv at the end in this manner will keep the rejuv on your bars if no target is selected. With that said, if this for boomy or resto we are missing a harm conditional opportunity for moonfire or sunfire when not in any form. In that case I’d insert either moon fire or sunfire like so:

#showtooltip
/cast [form:1,harm] Shred;[form:3,harm]Mangle;[harm](insert moonfire or sunfire here);[help,exists][]rejuvenation

1 Like

Bear Form = 1
Cat Form = 2

2 Likes