Druid Bear Form / Thorns / Frenzied Regen macro

I am not experienced at all with macros, but I have the working macro
/use [mod:ctrl] 13
/cast [stance:2/3/4/0] Bear Form(Shapeshift); [stance:1] Thorns

and want to add Frenzied Regeneration but can not figure out how.

You want it to Frenzied Regen when?

Optimization of the existing macro

#showtooltip
/use [mod:ctrl] 13
/cast [noform:1] Bear Form(Shapeshift); Thorns

I would like Frenzied regen after Thorns. Thanks for the optimized version :slight_smile:

If what I’m seeing on wowhead is right it’s not possible. Both Frenzied Regen and Thorns are on the GCD.

What you can do is put one of them on a modified press.

#showtooltip
/use [mod:ctrl] 13
/cast [noform:1] Bear Form(Shapeshift); [mod] Thorns; Frenzied Regeneration

thanks for your help. I didn’t think this would be the case given that there is already a GCD after bear form, making the thorns cast require a second press… its not possible to have FR on third press?

You could do a castsequence but they can be unreliable.

The reason your original macro works with one it because it’s going… if you’re not in bear form then cast bear form else cast thorns. There’s no test to check “if the thorns buff is up”

This is the castsequence version

#showtooltip
/use [mod:ctrl] 13
/castsequence [noform:1] Bear Form(Shapeshift); Thorns, Frenzied Regeneration
1 Like

i see. this will not cast frenzied regen if thorns is on cooldown. I didn’t realize it worked this way. Thank you again for your help! :slight_smile: