Skip to content

Instantly share code, notes, and snippets.

@jmervine
Created December 3, 2022 22:42
Show Gist options
  • Save jmervine/623d552d574b04b9e45f06f7bd138d6c to your computer and use it in GitHub Desktop.
Save jmervine/623d552d574b04b9e45f06f7bd138d6c to your computer and use it in GitHub Desktop.

Druid Bear Macros

Bear Weaving - 1

This is the generic macro that is from the Druid Discord. It switches you to bear, if you're not already in bear, then casts Mangle and then switches you back to cat.

NOTE: This needs to be spammed or it will reset and you'll be suck in bear, you have 4.5 seconds before that occurs.

#showtooltip
/startattack
/run if GetSpellCooldown(768)>0 then SetCVar("autoUnshift",0) end;
/castsequence reset=4.5 !Dire Bear Form, Mangle (Bear), !Cat Form
/use [form:1] Enrage
/run SetCVar("autoUnshift",1)

Bear Weaving - 2

This is the same macro as above, but instead of showing the next ability to be cast, it shows "Enrage" as the tool tip to allow for easier watching of the CD to know when to press it.

#showtooltip Enrage
/startattack
/run if GetSpellCooldown(768)>0 then SetCVar("autoUnshift",0) end;
/castsequence reset=4.5 !Dire Bear Form, Mangle (Bear), !Cat Form
/use [form:1] Enrage
/run SetCVar("autoUnshift",1)

Feral Charge - Bear

Bear charge, with enrage and queing maul, from any stance.

#showtooltip Feral Charge - Bear
/cast !Dire Bear Form
/use [form:1] Enrage
/cast [form:1] Feral Charge - Bear
/cast [form:1] Mangle (Bear)

Bear Taunt (Growl)

Bear charge, with enrage and queing maul and casing mangle (if enrage was up), from any stance.

#showtooltip Growl
/cast !Dire Bear Form
/use [form:1] Enrage
/cast [form:1] Growl
/cast Maul
/cast [form:1] Mangle (Bear)

Bear AOE Taunt (Challenging Roar)

Bear charge, with enrage and demoralizing roar (if enrage was up), from any stance.

Note: I don't play bear so I'm not sure if you want to cast demo roar, if not remove it.

#showtooltip Challenging Roar
/cast !Dire Bear Form
/use [form:1] Enrage
/cast [form:1] Challenging Roar
/cast [form:1] Demoralizing Roar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment