Skip to content

Instantly share code, notes, and snippets.

@jmervine
Last active July 21, 2021 23:42
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmervine/205c8d75179fcfaaac9dbceaaa71ed9e to your computer and use it in GitHub Desktop.
Save jmervine/205c8d75179fcfaaac9dbceaaa71ed9e to your computer and use it in GitHub Desktop.
WoW Macros

General Macros and Commands

Commands

Change Cursor Size

Options:

  • -1 is auto
  • 0 is smallest
  • 2 is biggest
/console cursorsizepreferred 2

Skull Marker

  • 8 = Skull
  • 7 = X
  • 1 = Star
  • 5 = Moon

You can probably good the rest.

/script SetRaidTarget("target",8);

Hunter Macros

General

Misdirection

#showtooltip Misdirection
/cast [@focus,exists][@pet] Misdirection

Hunter's Mark /w Skull

#showtooltip Hunter's Mark
/script SetRaidTarget("target",8);
/cast Hunter's Mark

Beast Mastery

Kill Command

#showtooltip Kill Command
/use 13
/use 14
/cast Spirit Pulse
/cast Kill Command

Marksmen

Aimed Shot

#showtooltip Aimed Shot
/use 13
/use 14
/petattack
/cast Aimed Shot

Rapid Fire

#showtooltip Rapid Fire
/use 13
/use 14
/petattack
/cast Rapid Fire

Warlock Macros

General

Unending Resolve + Healthstone

#showtooltip Unending Resolve
/use Healthstone
/cast Unending Resolve

Fel Domination + Pet

#showtooltip Summon <pet of choice>
/use Fel Domination
/use Summon <pet of choice>

DoT Mouseover Example

"Corruption" can be replaced with any DoT spell.

#showtooltip Corruption
/use [@mouseover,harm] [harm] Corruption

Banish Focus

#showtooltip Banish
/use [@focus] [] Banish

Demonic Circle

#showtooltip
/stopcasting
/cast Demonic Circle

Moral Coil or Howl of Terror

Bind the two spells to the same key, depending on what you have talented. Makes temporary spec changes simpler.

#showtooltip
/use [talent:5/2,@mouseover,exists] Mortal Coil; [talent:5/2] Mortal Coil; [talent:5/3] Howl of Terror

Demonology

Grimire: Felguard

#showtooltip Grimoire: Felguard
/petattack
/use 13
/use 14
/cast Blood Fury
/cast Grimoire: Felguard

Summon Demonic Tyrant

#showtooltip Summon Demonic Tyrant
/petattack
/use 13
/use 14
/cast Blood Fury
/cast Summon Demonic Tyrant

Demonbolt

Can be used with any spell to start pet attack

#showtooltip Demonbolt
/petattack
/cast Demonbolt

Destruction

Havoc

Cast on Mouseover target, or current target.

#showtooltip Havoc
/cast [@mouseover,harm] Havoc; [harm] Havoc

Rain of Fire

Case at cursor to avoiding circle and click.

#showtooltip Rain of Fire
/cast [@cursor] Rain of Fire

Rain of Fire

Case at cursor to avoiding circle and click.

#showtooltip Summon Infernal
/use 13
/use 14
/cast Blood Fury
/cast [@cursor] Summon Infernal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment