WoW Druid Macros

druid

Introduction

Continuing my Macro listings, I'll post some Druid Macros! These macros are all thanks to World of Warcraft Druid Forum. I don't play a druid on any server, yet the macros are pretty straightforward. If you have questions or suggestions...let me know and I'll update/post them here.

Feral Macros

Ravage/Shred combo

CODE:
  1. If not in stealth mode, cast shred.  Otherwise, cast ravage.
  2. [code]/cast [nostealth] Shred; [stealth] Ravage

Ravage/Shred/Ferocious Bite
If alt is pressed, cast Ferocious Bite. Otherwise if in stealth, cast Ravage. Otherwise cast Shred.

CODE:
  1. show Shred
  2. /cast [modifier:alt] Ferocious Bite; [stealth] Ravage; Shred

Pounce/Rake combo
If not stealth cast rake, otherwise cast pounce.

CODE:
  1. /cast [nostealth] Rake; [stealth] Pounce

Pounce/Rake/Rip
If alt pressed, cast Rip. Otherwise if stealth cast Pounce. Otherwise cast Rake.

CODE:
  1. # show Rake
  2. /cast [modifier:alt] Rip; [stealth] Pounce; Rake

Pounce/Mangle combo - Note the extra ()
If not stealth cast Mangle, otherwise cast Pounce.

CODE:
  1. /cast [nostealth] Mangle (Cat)(); [stealth] Pounce

Prowl or Faerie Fire (Feral)
If out of combat and not stealthed, cast Prowl. Otherwise if in combat and not stealthed, cast Faerie Fire.

CODE:
  1. /cast [nocombat, nostealth] Prowl; [combat, nostealth] Faerie Fire (Feral)()

Maul/Mangle
This is a space saver macro! In combat, Mauls first, then Mangles, then Mauls, then Mauls. Each 'spell' requires a click.

CODE:
  1. /castsequence reset=6/combat Maul, Mangle (Bear)(), Maul, Maul

Mangle (Bear) replacing auto-attack
Starts off auto attack with a Mangle...if Alt is held while clicking the macro, you will stop attacking.

CODE:
  1. # show Mangle (Bear)()
  2. /startattack [nomodifier:alt]
  3. /cast [nomodifier:alt] Mangle (Bear)()
  4. /stopattack [modifier:alt]

Shifting Macros

Shift to Caster
Shift to Caster Form from any form

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>

Shift to Dire Bear
Shift to Dire Bear Form from any form - note: to have this macro also de-shift you, include "[stance:1] Dire Bear Form; " somewhere in the /cancelaura line.

CODE:
  1. /cancelaura [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Dire Bear Form

Shift to Dire Bear and Charge
Shift to Dire Bear From and Feral Charge from any form

CODE:
  1. /cancelaura [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Dire Bear Form; [stance:1] Feral Charge

Dire Bear and Equip
Shift to Dire Bear Form and equip Idol/Weapon
* "Shift to Dire Bear From from any form, equip Warden Staff and Idol of Brutality only when you actually shift to Dire Bear. Note that the test for the equip is still [nostance] because it hasn't yet registered that the stance has changed. You don't need to worry about the global cooldown, because the stance change and the weapon equip both trigger it at the same time, so you only suffer once. (...equipping things can be done during global cooldown.) "

CODE:
  1. /cancelaura [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Dire Bear Form;
  4. /equip [nostance] Warden Staff
  5. /equip [nostance] Idol of Brutality

To Cat Form
Shift to Cat Form from any form - note: to have this macro also de-shift you, include "[stance:3] Cat Form; " somewhere in the /cancelaura line.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Cat Form

To Cat and Stealth
Shift to Cat Form and stealth from any form (first line makes the macro display the Prowl cooldown)

CODE:
  1. show Prowl
  2. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  3. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  4. /cast [nostance] Cat Form; [stance:3, nostealth] Prowl

Shift to Cat Form and equip Idol
Switch from any form to Cat form and equip an Idol

CODE:
  1. /cancelaura [stance:1] Dire Bear Form;[stance:2] Aquatic Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Cat Form; [stance:3, nostealth] Prowl
  4. /equip [nostance] Idol of Ferocity

Shift to Travel Form from any form
Self Explanatory

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Travel Form

Travel Form + Nature's Grasp - note: you can cast Nature's Grasp in forms
If you are in a non-travel form, cancel it. If you are mounted, dismount. Cast Travel Form, cast Nature's Grasp.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance, outdoors] Travel Form; [stance:4, outdoors] Nature's Grasp

Spam Travel Form
If you are in a non-travel form, cancel it. If you are mounted, dismount. Cast Travel Form.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance, outdoors] Travel Form

All-Terrain Travel Form
If you are in a non-travel/non-swimming form, cancel it. If you are mounted, dismount. If you are swimming, cast Aquatic Form. Otherwise cast Travel Form.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:3] Cat Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance, swimming] Aquatic Form; [nostance, outdoors] Travel Form

Spam All-Terrain Travel Form
No matter the current form, cancel it. If you are mounted, dismount. If you are swimming, cast Aquatic Form. Otherwise cast Travel Form.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance, swimming] Aquatic Form; [nostance, outdoors] Travel Form

Spam ATTF + Mount
If you are in a non-travel/non-swimming form, cancel it. If you are standing still, mount. If you are swimming, cast Aquatic Form. Otherwise cast Travel Form.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  2. /use Stormpike Battle Charger <replace with your mount>
  3. /cast [nostance, swimming] Aquatic Form; [nostance, outdoors] Travel Form

Spam Travel Form + Rejuv - the WSG flag carrying macro
Cancel any form. If you are mounted, unmount. Cast rejuvenation, travel form, travel form, travel form (one per button press in that order).

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>; [mounted] Frostwolf Howler <replace with your mount>
  2. /castsequence [nostance] reset=12 Rejuvenation, Travel Form, Travel Form, Travel Form

Shift to Tree of Life form and switch your actionbar from #1, to #2
Since most spells don't work in Tree of Life, you can set up a dedicated actionbar with ToL-only spells.

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /cast [nostance] Tree of Life
  4. /changeactionbar [stance:5] 2

Return to Caster Form and restore original actionbar

CODE:
  1. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Tree of Life
  2. /cancelaura [mounted] Frostwolf Howler <replace with your mount>
  3. /changeactionbar [nostance] 1

Restoration Macros

Cleanse Poison/Curse Combo

CODE:
  1. #left click abolish poison, right click remove curse. both find target, alternatively, if you prefer targeting player first, replace target=none with target=target
  2. /cast [button:1,target=none] Abolish Poison; [button:2,target=none] Remove Curse

Spam Cleanses

CODE:
  1. /targetfriend
  2. /cast [button:1] Cure Poison; [button:2] Remove Curse
  3. /stopcasting

Pseudo -Decursive

CODE:
  1. /cast [help] Cure Poison
  2. /stopcasting
  3. /cast [target=player] Cure Poison
  4. /cast [target=party1] Cure Poison
  5. /cast [target=party2] Cure Poison
  6. /cast [target=party3] Cure Poison
  7. /cast [target=party4] Cure Poison
  8. /stopcasting

Nature's Swiftness + Healing Touch

CODE:
  1. /cast Nature's Swiftness
  2. /stopcasting
  3. /cast [help] Healing Touch; [target=player] Healing Touch

NS + HT/Regrowth

CODE:
  1. /cast Nature's Swiftness
  2. /stopcasting
  3. /cast [nostance, help] Healing Touch; [nostance, target=player] Healing Touch; [stance:5, help] Regrowth; [stance:5, target=player] Regrowth

ZHC + NS + HT/Regrowth

CODE:
  1. /use Zandalarian Hero Charm
  2. /stopcasting
  3. /cast Nature's Swiftness
  4. /stopcasting
  5. /cast [nostance, help] Healing Touch; [nostance, target=player] Healing Touch; [stance:5, help] Regrowth; [stance:5, target=player] Regrowth

Heal target or self, based on context

CODE:
  1. /cast [help] Healing Touch; [target=player] Healing Touch
  2. /stopmacro [nohelp]
  3. /say "Healing %t in 3 seconds."

HoT Stack

CODE:
  1. /castsequence [help] reset=8/target Regrowth, Rejuvenation, Lifebloom; [target=player] reset=8 Regrowth, Rejuvination, Lifebloom

Rejuv + Idol

CODE:
  1. /equip Idol of Rejuvenation
  2. /cast Rejuvenation

Heal Target or Target's target

CODE:
  1. /cast [help] Healing Touch; [target=targettarget] Healing Touch

Healing Touch Mega-pack

CODE:
  1. /cast [modifier:alt,target=player] Healing Touch;[help] Healing Touch;[target=targettarget, help] Healing Touch;[target=mouseover,help] Healing Touch;[target=focus,help] Healing Touch;[target=focustarget,help];[target=none] Healing Touch

General Utility Macros

Faerie Fire and Feral Faerie Fire combo

CODE:
  1. show Faerie Fire (Feral)()
  2. /cast [nostance] Faerie Fire; Faerie Fire (Feral)()

Spammable Prowl and Shadowmeld

CODE:
  1. /cast [nocombat, stance:3, nostealth] Prowl; [nocombat, nostealth] Shadowmeld

Innervate - note: Innervate supposedly can now only be cast on units with mana.

CODE:
  1. /cast [modifier:alt, target=player] Innervate; [help] Innervate; [target=mouseover, exists, help] Innervate; [target=none] Innervate

Moonfire Spam
Cast Moonfire rank 10, 9, 9, 9, 9 each time the button is pressed. Reset the macro if you change targets, enter combat, or hold ctrl and press the macro.

CODE:
  1. /castsequence reset=9/target/combat/ctrl Moonfire(Rank 10), Moonfire(Rank 9), Moonfire(Rank 9), Moonfire(Rank 9), Moonfire(Rank 9)

Moonfire Flex
If you hold control, cast moonfire 1. If you click with your second mouse button, cast rank 9, otherwise cast rank 10.

CODE:
  1. /cast [modifier:ctrl] Moonfire(Rank 1); [button:2] Moonfire(Rank 9); Moonfire(Rank 10)

Moonfire + Idol

CODE:
  1. /equip Idol of the Moon
  2. /cast Moonfire

Totem Killer - needs testing

CODE:
  1. /target totem
  2. /cast [harm] Moonfire(Rank 1)

Faerie Fire Target or Target's target

CODE:
  1. /cast [harm] Faerie Fire; [target=targettarget, harm] Faerie Fire

Hurricane+Barkskin - note: for some reason, this still show's Barkskin's cooldown

CODE:
  1. show Hurricane
  2. /stopmacro [channeling:Hurricane]
  3. /castsequence reset=60/combat Barkskin, Hurricane

Gift of the Wild/Mark of the Wild

CODE:
  1. /cast [button:2] Gift of the Wild; [modifer:ctrl] Gift of the Wild; Mark of the Wild

Mark of the Wild + Thorns

CODE:
  1. /castsequence [modifier:alt, target=player] reset=10/target Thorns, Mark of the Wild; [help] reset=10/target Thorns, Mark of the Wild; [target=player] reset=10/target Thorns, Mark of the Wild

Stun and Self-Heal (Tauren)

CODE:
  1. show War Stomp
  2. /cancelaura [stance:1] Dire Bear Form; [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  3. /castsequence [target=player] reset=120/combat War Stomp, Regrowth, Rejuvenation

Stun and Self-Heal (Dire Bear Form) - doesn't work yet...

CODE:
  1. show Bash
  2. /cancelaura [stance:2] Aquatic Form; [stance:3] Cat Form; [stance:4] Travel Form; [stance:5] Moonkin Form <or Tree of Life>
  3. /castsequence [stance:1] reset=50/combat Bash, Dire Bear Form, Regrowth, Rejuvenation
  4. /castsequence [nostance] reset=50/combat Dire Bear Form, Bash, Dire Bear Form, Regrowth, Rejuvenation

Discuss This Article


20 Responses to “WoW Druid Macros”

  1. Avatardave70

    Great help, thanks a lot. its a pity you didnt put in any balance macros, but i was able to change a few of these ones to balance.

    Reply to this comment.
    1
  2. AvatarSanou

    Hey got a complete noob question for you but what does “mouseover” do? If I hit the macro button and then mouseover the first target will it cast a spell on it?

    Reply to this comment.
    2
  3. AvatarBrumme

    Mouseover works like this, you hold your mouse-pointer over a person in screen, and if you hit the macro as you do, it will “cast” or whatver you wished for it to do onto that person that you currently have your mouse over.

    like: /cast [target=mouseover] Fearie Fire(Rank 1)

    Will cast Faerie Fire rank 1 onto the person you have your pointer above.

    Hint: You must use like mouse or keybinding to make it work proper.

    Reply to this comment.
    3
  4. pingback pingback:
    Useful Feral Druid Resources

    [...] Druid Macros September 01st, 2007 | Category: Feral Druid Advice | [...]

    Reply to this comment.
    4
  5. AvatarDany letourneau

    HI im tryin to figure a maccro, still not workin wondering if u could help me with it. I want to: From Cat form going back to human form, cast cyclone, turn back in cat form and change target.

    Thats for my arena 2vs2 lol

    if u can help would be real nice

    TYVM

    Reply to this comment.
    5
  6. AvatarKalados

    Hi!
    I’ve been using a few of these macros on my feral druid and they have worked wonders for me. There is one macro i thought of that u dont have on the list which i think would be helpful. I’ll explain the mechanics since i can’t get it to work.

    It’s quite simple really, all it is is the prowl/fairie fire macro with a twist. I’m trying to set one up using Feral Charge/Fairie Fire in the same key. The conditions i suppose would be if feral charge has rage and is not in cooldown, use it, if not, fairie fire.

    This would be the last thing i would need to feel that managing my drood in any situation is complete.

    Hope u can figure it out. Thx for your time.

    Reply to this comment.
    6
  7. Avatardee

    I set up my frst macro for regrowth. How do I hotkey it?

    Reply to this comment.
    7
  8. AvatarSacred

    The macros with show publish it in my guild chat. How do I get rid of that/

    Reply to this comment.
    8
  9. AvatarSacred

    The macros with show publish it in my guild chat. How do I get rid of that/

    I’ll write this out better.

    The macros that contain “show [spellname]” publish the following in guild chat:

    show [spellname]

    Some of the cooldowns show on the macros too put the guild message would get fairly annoying. Any ideas?

    Reply to this comment.
    9
  10. AvatarBovinusdeus

    Put a # in front of show. That’s how it’s supposed to be.

    The macros with show publish it in my guild chat. How do I get rid of that/

    I’ll write this out better.
    The macros that contain “show [spellname]” publish the following in guild chat:
    show [spellname]
    Some of the cooldowns show on the macros too put the guild message would get fairly annoying. Any ideas?

    Reply to this comment.
    10
  11. AvatarDry - Emerald Dream

    Thanks for this information. I created my own macros based on your code.

    Reply to this comment.
    11
  12. AvatarKriis @ Gorefiend

    #show [Spellname]

    Show is used so that when you put the macro on a button bar spot, when you MouseOver the macro you will get the tooltip info for the SpellName

    Example Macro that I use (based on one I use extensively on my priest):
    (Cast Rejuv on my MouseOver target, THEN if no MOT cast on my Target, THEN if no MOT or Target cast on Self)
    #showtooltip Rejuvenation(Rank 1)
    /cast [target=mouseover,help] Rejuvenationl(Rank 1); [target=target,help] Rejuvenation(Rank 1); [target=self] Rejuvenation(Rank 1)

    If I put this on my first button, then move my mouse over the macro, it will pop up the tooltip for Rejuv Rank 1.

    Reply to this comment.
    12
  13. AvatarWolfnettle

    I tried the following macros for Mark of the Wild + Thorns combined and with both only Thorns was cast. I would much appreciate it if anyone can help.

    Mark of the Wild + Thorns
    /castsequence [help] reset=10/target Thorns, Mark of the Wild; [target=player] reset=10/target Thorns, Mark of the Wild

    and

    /castsequence [modifier:alt, target=player] reset=10/target Thorns, Mark of the Wild; [help] reset=10/target Thorns, Mark of the Wild; [target=player] reset=10/target Thorns, Mark of the Wild

    Reply to this comment.
    13
  14. AvatarDernn

    With the castsequence macros, you have to click it more than once to do more than one ability (like for using that MotW and thorns macro, you have to click it once for thorns, then again for MotW - that is, if its within the reset time or if you havent switched targets).

    also, a good macro for anyone who plays a rogue is a mouseover blind so you dont have to switch targets.

    Reply to this comment.
    14
  15. AvatarMarnelius

    I got this macro for tanking, makes you use Healthstone´s and Healing potion, without leaving Bear-form.
    Not sure it´s already there, but I did´nt see, so I thought I will post it here.

    #showtooltip Master Healthstone
    /cancelaura [stance:1] Dire Bear Form
    /use Master Healthstone
    /use Super Healing Potion
    /cast Dire Bear Form

    Reply to this comment.
    15
  16. Avatarmrx

    hey anyone know a way to make

    “/castsequence”

    work without having to click twice on the macro??

    in other words clikc it once and it cast all the spells I want after each other.

    Reply to this comment.
    16
  17. AvatarZap

    Im a Tauren Druid, and i was wondering if someone could write a macro for me that would shapeshift me to caster form, from any from im in, use the taurens racial ability war stomp, to stun, then cast Healing touch, rejuv, then shapeshift back into cat or bear form.

    maybe 2 macros, 1 to end up in bear, another to end up in cat…

    thanks

    Reply to this comment.
    17
  18. AvatarDJ

    hey anyone know a way to make
    “/castsequence”
    work without having to click twice on the macro??
    in other words clikc it once and it cast all the spells I want after each other.

    /castsequence is not designed that way. There is no way to “click and forget”, that’s by design because there is no “wait n seconds and continue” macro option. Could you imagine how OP that would be? However, if the spells do not share a cooldown, you can cast them all at once. Like Paladins Judgement and re-casting Seals (assuming you have a seal active):

    /cast Judgement
    /cast Seal of Righteousness

    This will cast both Judgement (8-10 sec CD) (or your current Seal) and then follow up with (re)casting Seal of Righteousness (global CD) with one click. These two spells do not share a cooldown, so they can be cast simultaniously.

    Reply to this comment.
    18
  19. AvatarMorb

    One of my favorite “moves” as a feral druid is what i like to call “stealth bomber”

    Dismount - Cat form - Prowl

    From the right hight the npc wont detect you and with Feline grace you wont take dammage and be revealed.

    But …

    I cant get the macro to work properly. I can make it dismount and go to cat form but when its time to prowl it says “You must be in catform”

    Help me out plz =)

    Reply to this comment.
    19
  20. AvatarFullyRacked

    How do you create a macro that casts the Gift of the Wild + Thorns buff for a whole party? I like to buff the whole party for PvP and Raids but while Gift of the Wild will buff everyone, I have to buff each separately for Thorns.

    Reply to this comment.
    20

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Comment Preview:

 (24350) - wow druid macros (956) - druid macros (577) - wow druid macro (517) - resto druid macros (487) - druid macro (422) - resto druid macro (228) - wow druid (200) - druid macros wow (175) - druid arena macros (167) - FERAL DRUID MACROS (160) - moonkin macros (148) - mangle macro (136) - macro druid (133) - moonkin macro (120) - wow macro druid (109) - druid macro wow (105) - wow macros druid (67) - lifebloom macro (65) - feral druid macro (62) - totem killer macro (61) - moonfire spam macro (56) - moonfire macro (54) - druid wow (51) - druid arena macro (47) - resto druid pvp macros (43) - macros for druid (41) - druid healing macros (40) - druid feral charge macro (40) - macros druid (39) - druid mangle macro (37) - druid wow macros (35) - macro druid wow (34) - feral macro (33) - mangle maul macro (31) - druid resto macro (29) - druiden makros (29) - barkskin macro (27) - wow macros (26) - macro wow DRUID (26) - druid healing macro (26) - druid totem macro (26) - druid totem killer macro (26) - druid macro feral charge (26) - Resto druid pvp macro (26) - druid wow macro (25) - druid feral macros (25) - wow druids (25) - wow auto attack macro (24) - wow druid healing macros (23) - Druid stance macro (22) - wow feral druid macros (22) - wow resto druid macros (22) - resto druid arena macros (22) - arena druid macros (21) - wow druid healing macro (20) - macro for druid (20) - druid macro mangle (20) - wow druid pvp macros (20) - moonfire totem macro (18) - macros druid wow (18) - balance druid macros (18) - Druid shift macro (18) -