Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(→‎Syntax overview: Moved EBNF syntax after the condition syntax section)
(→‎Complete list: "no" is a generic construct that applies to any conditional. nochanneling is not a separate conditional)
Line 561: Line 561:
 
* '''exists''' - Target exists
 
* '''exists''' - Target exists
 
* '''dead''' - Target is dead
 
* '''dead''' - Target is dead
* '''nodead''' - Target is not dead
 
 
* '''stance:0/1/2/.../n''' - In a stance
 
* '''stance:0/1/2/.../n''' - In a stance
 
* '''stealth''' - Stealthed
 
* '''stealth''' - Stealthed
Line 568: Line 567:
 
* '''equipped:''<item type>''''' - item type is equipped (item type can be an inventory slot, item type, or item subtype)
 
* '''equipped:''<item type>''''' - item type is equipped (item type can be an inventory slot, item type, or item subtype)
 
* '''channeling:''<spell name>''''' - Channeling the given spell
 
* '''channeling:''<spell name>''''' - Channeling the given spell
* '''nochanneling:''<spell name>''''' - Not channeling the given spell
 
 
* '''actionbar:1/.../6''' - Given action bar page is selected
 
* '''actionbar:1/.../6''' - Given action bar page is selected
 
* '''pet:''<pet name or type>''''' - The given pet is out
 
* '''pet:''<pet name or type>''''' - The given pet is out

Revision as of 18:11, 12 October 2007

This page is an archive of Cogwheel's Complete Macro Guide
Macros
General guides

Macros Beginners Guide
Making a macro
Macro conditionals
Macro commands
Category:Macros

Useful macros by class

Useful macros for death knights Useful macros for demon hunters Useful macros for druids Useful macros for hunters Useful macros for mages Useful macros for monks
Useful macros for paladins Useful macros for priests Useful macros for rogues Useful macros for shamans Useful macros for warlocks Useful macros for warriors

Part I: Basic Macros

What is a Macro?

A macro is a list of slash commands. Common slash commands include the following:

  • /say (/s)
  • /whisper (/w, /talk, /t)
  • /emote (/e, /em, /me)
  • /dance
  • Oh, and for you PvPers out there, I mustn't forget /spit

With macros, these commands can be used from action buttons, and many of them can be used at once. Each unique command goes on its own line and is written exactly as it would be typed it in the chat box. For instance, a macro that makes the player yell "Everybody, dance now!" and burst into dance would be written as thus.

/y Everybody, dance now!
/dance

A mostly complete list of slash commands is available at List of Slash Commands though at the time of this writing some of the new commands in 2.0 have not been added. WoWWiki is a great source of additional information for macros, especially scripts using the /run command (which will be covered later).

Note: I will take this early opportunity to let you know that macros run all at once. This means that when you click the button, the macro runs each command from start to finish before returning control to the game. This has two important effects. First, if you write a macro that takes a long time to execute (like /run for i=1, 100000000 do end), the game will freeze for as long as it takes to run the macro.

Second, and arguably more important, there is no way to wait in a macro without freezing the game. This fact will become much more apparent when we start dealing with the /cast command and its ilk. Some addons can provide a way to issue a command at a later time, but they can only be used for "benign" functions like chatting, emotes, and issuing commands to other addons.

How do I make a macro?

First, open up the macro window. You can do this either by opening the main menu and selecting Macros, or by typing /macro (/m) in the chat box. At the top of the window, you'll see two tabs: General Macros and Yourname Specific Macros. General macros are stored on an account-by-account basis and are shared by all your characters. Character specific macros are, well, I think you can figure this one out yourself. :P Immediately under the tabs is a grid of 18 boxes where the macros are displayed. Under those, there is a single box which displays your currently-selected macro with a Change Name/Icon button next to it. Below that is the edit box where you actually type the macro. Finally, at the bottom you have a number of self-explanatory buttons.

To create a macro, click the New button at the bottom of the window. This brings up another small window off to the side where you choose the icon and type a name for the macro. If you choose the question mark icon ({{{1}}}), WoW will automatically pick an icon for your macro based on what spells or items are listed in the macro (see below). Once you have chosen an icon and a name, click the Okay button.

A few notes: You can control what icon is shown in place of the question mark with the #show commands. Although you can name two macros the same, it is better to avoid this since some functions of addons or even certain macro commands reference macros by name. You can also add custom icons to the list (see the Part III).

Now you will notice that the macro icon you chose has been added to the 18 boxes mentioned earlier (as much of the name as will fit is also displayed on the icon). The newly created macro will also be selected so now it's time to start writing your macro. Click in the edit box of the macro window to start typing.

Note: Macros have a 255 character limit. Rumor has it this is because they intend to store macros on the servers some day. For now, though, see Part III below for information on preserving your macros among multiple computers. It should also be noted that there are addons which provide extended macro capabilities, SuperMacro being the most well-known of these.

When you are done typing your macro, simply drag its icon from the grid and place it on an action button. The macro will be automatically saved when you first try to use it or when you close the macros window. Click the button, and there you have it!

So, what good is a macro, then?

During the normal course of play, you aren't likely to type many slash commands that are generally useful for macros. Sure, the occasional emote macro can make for some interesting role playing, but c'mon... There's got to be more to it than that...

There is. Enter /cast, the most common command you will see in macros. The /cast command allows you to cast any spell from your (or your pet's) spell book by name. The simplest case is a command like:

/cast Shadow Word: Pain

This macro will cast your highest-rank Shadow Word: Pain on your target. It behaves exactly as if you had dragged SW:P onto that spot on your action bar. The action bar code recognizes the spell and will show cooldown and range feedback on the icon. In fact, if you choose the question mark icon I mentioned earlier, the action bar will even show the icon for SW:P.

"Ho, hum," you might be thinking... Why not just put the spell on your bar? Well, that's where combining multiple commands comes in handy, and this is exactly what makes macros so useful. What if you're a mage and you want to let your party know that you're about to sheep something? Well, simply put the cast & /p message in a macro (there are better macros for this task--[insert shameless plug for my CCWarn addon here]--but this is a nice, easy to understand example):

/cast Polymorph
/p Sheeping %t! You break it, you tank it!

Note: Since the macro is executed all at once, the /p command will be issued when you start the cast, and will not care either way whether you have a valid target or whether Polymorph is on cooldown. This also means you can put the two commands in either order and it will have the same effect. If you want to say something only when you actually cast the spell, check out the addon AfterCast. AfterCast schedules a slash command to run... well... after you cast a spell (within the limitations mentioned earlier). For example:

/aftercast /p Click the portal to get %t's lazy butt over here
/cast Ritual of Summoning

Notes about casting

There are quite a few caveats around casting spells in macros. Many of them are to discourage botting. Others are simply limitations of the macro system itself. These notes apply to item use as well, which will be covered later on

Spell names and ranks

The /cast command is pretty picky when it comes to your spell name. It is sensitive to case, punctuation, spacing, etc. The best way to guarantee you enter the right name is to open your spell book while writing the macro, place your cursor in the macro where the spell should be, and shift-click the spell in your spell book. This will enter the exact name of the spell including its rank like the following:

/cast Shadow Word: Pain(Rank 5)

You can safely remove the (Rank 5) from the macro and it will automatically pick the highest rank--assuming you want to, of course; there are many situations where it is advantageous to use a particular rank (like specific timing on a Warlock's banish). Beware, though... Some spells with parentheses in their name may need some coddling. For example, using shift-click on a Druid's feral Faerie Fire spell produces the following macro:

/cast Faerie Fire (Feral)(Rank 2)

If you remove the entire (Rank 2), the internal code that translates the spell name gets confused by (Feral) thinking it is a rank and the spell doesn't cast. You will have to change it to the following in order for it to work as expected:

/cast Faerie Fire (Feral)()

The empty parentheses are seen as the rank since they're at the end. Because they're empty, the parser picks your highest rank and casts the spell. You can also use empty parentheses for other spells, but with the 255 character limit, space is definitely an issue.

Global cooldown (or: Multiple actions with one click)

In general, you cannot cast more than one spell with a single click of a macro. Most spells trigger the global cooldown which keeps you from casting too many spells at once which would give a significant advantage to "twitchier" people or people who make liberal use of macros. Even if a spell fails to cast, if it would trigger the GCD, it prevents subsequent /casts in the macro from running. This last point was not the case prior to 2.0 which is why you may still come across macros like the following:

/cast Overpower
/cast Execute
/cast Mortal Strike
/cast Sunder Armor

Macros like this do not work anymore. As soon as Overpower fails to cast, the game will block all the other spells from casting as well, even though the GCD is not actually triggered.

There is a bit of good news, though. Certain spells can actually be cast at the same time in a single macro. Any spell that is instant and does not trigger the GCD can be followed by another cast ("Next Melee" abilities like Heroic Strike fall under this category too). The spell's tooltip will tell you if it's instant, but you have to use the spell (or check a spell database site like thottbot.com) to know if it triggers the GCD.

Depending on the nature of the spell or item, you may have to place a /stopcasting command after the instant spell. The game engine assumes that after the first /cast is attempted, a spell is now in progress. /stopcasting removes this assumption and prevents the "Another action is in progress" error. Since the spell is instant it does not actually cancel the cast. Example:

/cast Arcane Power
/stopcasting
/cast Presence of Mind
/stopcasting
/cast Pyroblast

How do I use an item/trinket?

Simple answer: the same way you cast a spell. In fact, item use has the same caveats I mentoned above for spells (global cooldown concerns, etc.). The command for using an item is (you guessed it) /use. Like /cast, its simplest form takes the name of the item you want to use:

/use Green Mechanostrider

There are also a couple other forms of the /use command:

/use <inventory slot>

This form of use allows you to use an item in the specified slot. The slot can be a number (like 13 or 14 for the top and bottom trinket slots, respectively). See also InventorySlotId for lists of the slot numbers.

/use <bag> <slot>

You can also use an item in a specific bag location. Lets say you always keep the food you want to feed your pet in the first slot of your backpack. You can easily write a macro to feed your pet as follows:

/cast Feed Pet
/use 0 1

Bags are numbered 0-4 from right to left (0 is always the backpack) and the slots are numbered starting at 1 going left to right, top to bottom (like reading):

1  2  3  4
5  6  7  8
...

or

      1  2
3  4  5  6
7  8  9  10
...

Trading risk of confusion for completeness, I'll let you know that /cast and /use function exactly the same way. /cast can use items and /use can cast spells. This isn't very useful for simple macros like you've seen so far. However, when you start dealing with macro options and sequences you'll be happy to know that you can intermingle items and spells in the same command.

Targeting

Targeting is another common task in macros. This is accomplished either by using dedicated targeting slash commands which actually change your target or by using the [target=] macro option on commands that accept them. When you use the macro option, you are actually casting the spell or using the item directly on the unit without changing targets. Macro options will be covered in great detail in Part II. For now, I'll show you how to use the targeting commands.

The most basic targeting command (unsurprisingly) is /target. Its use is as simple as

/target Cogwheel

/target does a closest match which means if you do /target Cog and I'm standing near you (and no one named Cog is) it will target me. This is a plus or a minus depending on your situation. Unfortunately, it will also target irrelevant units (like corpses). This makes macros like the following much less useful than they might first appear.

/target Blackwing Mage
/cast Curse of Agony

If no Blackwing Mages are around, this might target someone in your raid who happens to have the letters B and L in their name. While they're safe from the wrath of your curse, it's still a bit disconcerting. Another problem is that it may target something 100 yards behind you that you don't really care about. (I have addressed these concerns in my UI Suggestions thread and I hope they will be considered in the future.)

In addition to specifying the name of someone you would like to target, you can also provide a unit ID. Unit IDs are a way to identify a particular character, mob, NPC, etc. For instance, your current target can always be accessed by the "target" unit ID (obviously not the most useful for the command we're discussing at the moment :P). You yourself are accessed by the "player" ID, and if you have a pet it would be referenced by "pet." You can also append "target" to the end of any valid unit ID to arrive at that unit's target. There is a joke about Kevin Bacon involving a macro like:

/target targettargettargettargettargettarget

UnitId has a full list of allowed IDs.

Other targeting commands

Here is a brief overview of the other targeting commands:

/assist

By itself, assist targets your target's target (e.g. if you are targeting me, and I'm targeting Iriel, /assist would make you target Iriel). You can also provide a name or unit to /assist and you will assist the specified entity. There is an interface option which will automatically start you attacking if you target a hostile by this method.

/cleartarget

Clears your target (no kidding!)

/targetlasttarget

As the name suggests, this will target your previous target.

/targetenemy, /targetfriend

These commands cycle through the specified type of unit. /targetenemy is like pressing TAB, and /targetfriend is like pressing CTRL-TAB. You can also add a parameter of 1 which reverses the direction of the cycle (/targetenemy 1 is like pressing SHIFT-TAB).

Note: You can only use the preceeding commands once per macro.

/targetparty, /targetraid

Cycles through your party or raid members. Like /targetenemy, you can add a 1 to reverse the direction.

What is "focus"?

Focus is a UnitID like target, player, or raidpet1target. It allows you to reference a mob, player, or NPC you specify. The simplest usage of focus is with keybindings. There are two focus-related functions in the bindings menu: Focus Target, and Target Focus. Focus Target sets your focus to whatever your target is or clears your focus if you have no target. Once you have a focus set, you can use it as a unit ID for any other command. Target Focus will, as you might guess, target the entity you have focused. However, this doesn't necessarily take full advantage of focus.

One of the most common uses is to set a crowd control target. A mage can select a mob to sheep and set it as their focus. Now they can change targets for DPS and use the following macro whenever they need to re-sheep:

/cast [target=focus] Polymorph

Or maybe a healer could set their focus to the main tank. With an addon like FocusFrame, they would then have a frame devoted to their main tank that they could easily use for healing.

In addition to the key bindings, there are also the /focus and /clearfocus slash commands. Without any parameters, /focus works exactly like the key binding, setting your current target as your focus. You can also specify any valid unit ID (see Targeting above) or name as a parameter to /focus:

/focus party3target

Here is an example of more advanced focusing:

/focus [target=focus, noexists] [target=focus, dead] [target=focus, help]
/stopmacro [target=focus, noexists]
/cast [target=focus] Polymorph

This uses macro options which are covered in Part II. The first line sets your focus to your current target if a) you don't already have a focus, b) your current focus is dead, or c) your current focus is friendly. If you aren't targeting anything, it will clear your focus. The second line keeps the macro from proceeding if you don't have a focus. Finally, it casts Polymorph on your focus. This gives you a one-button solution for your crowd control with focus.

It's possible to swap your target and your focus, giving you, in effect, two targets you can toggle between:

/cleartarget [target=target, dead]
/clearfocus [target=focus, dead]
/target focus
/cleartarget [target=focus, noexists]
/targetlasttarget
/focus target
/targetlasttarget

The first two lines clear the target and/or focus if they are dead (if you really want to keep track of multiple dead targets, e.g. to resurrect or loot them, then delete those lines). The fourth line is needed because /target focus doesn't clear your target if you have no current focus (without it the fifth line would then retrieve your previous target).

How do I control my pet?

As mentioned in the spell casting section, you can use /cast to cast your pet's abilities by name. In fact, Blizzard had to change the name of the Mage elemental's Frost Nova to Freeze because there was no way to use it in a macro. :P But as everyone with a pet is aware, that's nowhere near the end of the line for pet control. Luckily the Burning Crusade patches brought us a host of new pet commands.

/petattack, /petfollow, /petstay, /petpassive, /petdefensive, and /petaggressive all correspond to the basic control commands on your pet bar. Additionally we have /petautocaston <spell> and /petautocastoff <spell> which activate or deactivate, respectively, your pet's auto cast for the named spell. There is no command to toggle autocast, but see Simulating button clicks below for a workaround.

Controlling button feedback and the question mark icon ({{{1}}}) with #show

By default, WoW uses the first spell or item that appears in a macro to show cooldown, range, and availability feedback on the button, and to pick which icon to display when you use the question mark icon. Take our multi-spell macro from earlier as an example:

/cast Arcane Power
/stopcasting
/cast Presence of Mind
/stopcasting
/cast Pyroblast

With this macro, WoW chooses Arcane Power for the feedback. However, this is probably not what you really want. The main point of this spell is to cast Pyroblast. The first few lines merely exist as support spells to make the Pyroblast more effective. You can make the button behave as if Pyroblast were the first spell by adding the following line to the top of the macro:

#show Pyroblast

If you used the question mark icon for the macro, the button will even have the icon of Pyroblast without any extra effort on your part. The parameter to #show (in this case Pyroblast) works the same way as the /cast and /use commands. You can use a spell name, item name, item id (item:12345), inventory slot, or bag and slot numbers.

Similar to #show is #showtooltip. Normally when you mouse over a macro on an action bar, your tooltip displays the name of the macro. This is not incredibly useful most of the time (especially if you use an addon like TheoryCraft to give you detailed spell information in tooltips). However, the #showtooltip command allows you to specify a spell to use in the tooltip the same way as #show. If you use #showtooltip, you do not need to use #show.

If you're happy with the spell that WoW is choosing for the feedback, you can use #showtooltip without a spell to save space in your macro. WoW will still use whichever spell it was choosing before, but it will now show the tooltip info for that spell/item.

Other slash commands

Now that you have a solid foundation I'd like to briefly cover some of the other slash commands at your disposal. Some of these commands may seem a bit pointless at first glance, but when you combine them with the macro options from Part II, they can perform some neat tricks.

Equipping items

There are two commands for equipping items: /equip and /equipslot. /equip simply takes an item name and will equip it to the deafult slot as if you had right-clicked it in one of your bags (i.e., a one-handed weapon will be equipped to your main hand). /equipslot takes an inventory slot ID and an item name, and equips the item to the specified slot. Examples:

Equip the weapon to default slot:

/equip Honed Voidaxe

Equip a trinket to the lower trinket slot:

/equipslot 14 Carrot on a Stick

Sequencing spells

Many times you will find yourself casting a series of spells in the same order on pretty much any mob you fight. To make this job a bit easier, we have the /castsequence command. /castsequence takes a list of spell or item names separated by commas. Each time you activate the macro, it casts the current spell/item and moves on to the next and it resets to the beginning once you cast the last spell. For example:

/castsequence Immolate, Corruption, Curse of Agony, Siphon Life

might be something you would use for a Warlock's opening attack. Note, however, that if Immolate fails to cast for some reason (out of mana, not in range, silenced, etc.), the sequence will remain at that point. Because of this, you can't use a /castsequence to make a spammable macro like:

/castsequence Overpower, Execute, Mortal Strike

Before the spell list, you can also specify reset conditions to start the sequence over before it reaches the end. The basic syntax for reset conditions is:

reset=n/target/combat/shift/alt/ctrl

Where n is a number of seconds. You can specify any number of these conditions separated by slashes as shown. Seconds are used as a timeout for the command. Each time the sequence runs, it resets the timer. If you don't use the macro within the number of seconds specified, the sequence will start over. This is a very important distinction because it means you cannot use a reset timer to account for cooldown. target resets the sequence when you change targets; combat when you leave combat; shift, alt, and ctrl when you activate the macro with one of those keys depressed. Example:

/castsequence reset=10/shift Spell 1, Other Spell, Some Item

If you used the question mark icon, WoW will automatically update the icon to the current element of the sequence. If you have other /casts or /uses before the /castsequence, though, they will interfere and there is no way currently to tell WoW to pay attention to the sequence instead.


NOTE: You will still have to activate the macro repeatedly to cast each spell in the sequence.


Random spells

One of the most common requests on this forum is for a macro to use a random mount. This is extremely trivial thanks to the addition of /castrandom and /userandom (see Frequently Requested Macros below). Like /castsequence, /castrandom takes a list of spell or item names separated by commas and picks one at random when you run the command. /userandom also takes a comma-separated list, but each element of the list works like the /use command shown earlier.

Attacking

The simplest attack command is /attack. This functions identically to the attack skill or key binding and will toggle your attack. If you'd rather have an "always start" or "always stop" attack, you can use /startattack or /stopattack, respectively.

Action bar manipulation

There are two commands that allow you to change action bar pages: /changeactionbar and /swapactionbar. /changeactionbar takes a single number and will always switch to that page. One use of this is for hunters to emulate stances by having a pair of macros like:

/cast Aspect of the Hawk
/changeactionbar 1

and

/cast Aspect of the Monkey
/changeactionbar 2

/swapactionbar takes two page numbers and will swap between them each time it runs. If you're on a page other than one of the two specified, it will be change to the first of the two.

/swapactionbar 1 2

Removing buffs

The /cancelaura command allows you to remove unwanted buffs. For example, a tank could remove an unwanted buff in a macro with the following command:

/cancelaura Blessing of Salvation

Leaving a form

With the exception of Warriors, any class with stances (Druids, Priests with Shadowform, etc.) can use /cancelform to leave their current form. See the stance section of Part II for an example.

Stopping a cast

/stopcasting has been touched on briefly in other contexts but its main use, as you might guess, is to stop another spell cast that's in progress. This is useful for making "panic buttons" that interrupt whatever you're doing at the moment in favor of something more important. On my Warlock, for instance, I use the following macro:

/stopcasting
/cast Shadowburn

Halting a macro early

/stopmacro is one of those commands that doesn't really come into its own unless you use it with macro options. Its main use is to implement "fall-through" logic to prevent you from continuing a macro if certain conditions are true. See "What is focus?" for an example.

Dismounting

/dismount

'nuff said...

Simulating button clicks

The /click command takes the name of a frame and virtually clicks the frame with your mouse. By default, it behaves like a left-click, but you can specify other mouse buttons in the command. To determine the name of the frame you're interested in, you can use an addon like MoveAnything, look through the UI code for the frame, or activate the following macro with a key binding while mousing over the frame in question:

/run local f = GetMouseFocus(); if f then DEFAULT_CHAT_FRAME:AddMessage(f:GetName()) end

/click can be used for many different purposes. You can chain macros together by ending each with a /click command that activates the next macro in the sequence. You can also do things you wouldn't normally be able to do with macros. For instance, there is no command to toggle your pet's auto-cast abilities (until patch 2.3). However, you can use /click to reproduce a right-click on the given button (the fifth one in this example):

/click PetActionButton5 RightButton

Advanced Scripting

What scripts can't do

Scripts are very powerful tools that can make complex decisions based on a number of criteria. Because of this power, Blizzard has limited the types of things we're allowed to do with them in order to keep macros and addons from taking actions that should be controlled by the player. I'm starting this section with what you can't do because I don't want you to get your hopes up. While scripts do remain useful for quite a few purposes, you cannot use them to cast spells or affect your target in any way. You are limited to using the "secure" commands already shown for those tasks.

So what is a script?

The WoW UI is controlled by code written with the Lua scripting language. You can take advantage of this scripting system in a macro with the /run command (equivalent to /script--I use /run to save a few characters). The whole script must be on one line, though you can have multiple /run commands in a single macro.

A full treatment of Lua and programming in general is well beyond the scope of this document. However, if you have some programming experience, you should head over to Lua.org to learn the basics of Lua and if you don't have any programming experience, you may want to check out LearnToProgram to get a foundation of the concepts used in scripts.

Blizzard provides many functions (called the API) which the Lua scripts can use to control the UI. You can view the API and other features of the UI system over at Interface Customization (if you spend any considerable time with scripts and/or addons, WoWWiki will be indispensable). I can't possibly cover all the details of the UI environment, so I will simply present you with one of my favorite scripts as an example. See the previously linked references and the Mod Author Resources sticky for more information.

The following macro (on which I based my CCWarn addon) will whisper everyone in your raid to change their targets if they have the same target as you. This is to help keep them from breaking the sheep that this macro casts as well.

/cast Polymorph
/run for i=1,GetNumRaidMembers()-1 do local u,t="raid"..i,"target"if UnitIsUnit(u..t,t)then SendChatMessage("Change targets! Trying to sheep...","WHISPER",nil,UnitName(u))end end

There are two reasons that it looks as obfuscated as that. First, there is the 255 character limit; you often need to take certain shortcuts in order to get a script to fit in a macro. Second, you have to keep the entire script on one line. Under more ideal circumstances, that code would look more like:

for i = 1, GetNumRaidMembers() - 1 do
    local unit = "raid"..i
    if UnitIsUnit(unit.."target", "target") then
        SendChatMessage("Change targets! Trying to sheep...", "WHISPER", nil, UnitName(unit))
    end
end

Part II: Macro Options

What are macro options?

Macro options are a way to control actions based on various pieces of information. To dive right into an example, the following macro will cast Renew on a friendly target and Shadow Word: Pain on a hostile one.

/cast [help] Renew; [harm] Shadow Word: Pain

When you run this macro, the [help] condition is checked. This determines whether your target is someone you can cast beneficial spells on. If the [help] is true, it then casts Renew and the macro moves to the next line. Otherwise (either you have no target, or you can't cast a helpful spell on your target), it falls through to the next clause. Now it checks for the [harm] condition. [harm] is just like [help] but for offensive spells. If true, it casts Shadow Word: Pain. If it isn't true (no target or you can't harm your target) then it does nothing because there are no more clauses.

Note: I could have left the [harm] check out and it would have functioned in much the same way. However, if you have no target or your target can be neither helped nor harmed, you would receive an error message or, depending on the spell, the target selector cursor.

Commands which accept options

Only the "secure" commands respond to macro options. In fact, the secure commands are the reason macro options were created in the first place. Insecure commands like chatting, emotes, etc. can be scripted using the /run command. Furthermore, Blizzard didn't want to confuse people who use semicolons in their chat messages. If /say could use macro options, the following would always just say "Hello":

/say Hello; I'm a n00b

The following is a list of all the secure commands currently available in WoW:

  • #show *
  • #showtooltip *
  • startattack
  • stopattack
  • cast
  • castrandom
  • castsequence
  • stopcasting
  • cancelaura
  • cancelform
  • equip
  • equipslot
  • use
  • userandom
  • changeactionbar
  • swapactionbar
  • target
  • targetenemy
  • targetfriend
  • targetparty
  • targetraid
  • cleartarget
  • targetlasttarget
  • assist
  • focus
  • clearfocus
  • petattack
  • petfollow
  • petstay
  • petpassive
  • petdefensive
  • petagressive
  • petautocaston
  • petautocastoff
  • stopmacro
  • click
  • dismount

* #show and #showtooltip are not technically secure commands, but they operate with macro options just like /use and /cast.

If you would like a way to use macro options for insecure commands, there are addons that provide such capability. My addon, MacroTalk, adds a number of /opt___ commands for each chat command and a generic /opt command that lets you use options to choose other full (insecure) slash commands. I believe the newest SuperMacro provides this functionality as well.

[target=unit]

In addition to condition checking, the macro option system provides us with a way to set the target of various actions. For example, the following macro will always use the bandages on the player regardless of what is targeted:

/use [target=player] Heavy Netherweave Bandage

Besides setting the target of the action itself, the [target=] assignment also sets the unit that the conditionals are checked against. Since that probably didn't make much sense, here's a macro that combines concepts from both of the examples you've seen so far:

/cast [help] [target=targettarget, help] [target=player] Flash Heal

First it checks against [help]. If it's true, then it passes Flash Heal to /cast. Otherwise it moves on to the next condition, [target=targettarget, help]. Now it checks for help again, but this time it's checking to see if your target's target is friendly. If it is, then it will pass Flash Heal to /cast, but this time it also tells /cast that it should be cast on your target's target. If it still hasn't found a valid target yet, it'll move onto the next condition, [target=player]. Since there are no actual conditions in there, it will always be true, so Flash Heal is sent to /cast with you, the player, as the target.

So far, I have used two unit IDs with the [target=] instruction: player & targettarget. This is the way the WoW UI references players & NPCs. Other common units include focus, target, and mouseover. Please visit UnitId for a full list of unit IDs.

In addition to units, [target=] can also take player names as long as the player is in your party/raid. This can be useful for situations like arenas where you always know who you're going to be acting on. If you want to access a player's target, you append as many '-target's as necessary (e.g., [target=Cogwheel-target]).

Syntax overview

There can be an awful lot of confusion around how macro options work, so I will take this early opportunity to break down the general concepts behind them. I will be providing some real-world examples using actual options. Don't worry too much if you don't understand what they mean. All options will be covered in detail later on.

General options syntax

All slash commands basically work the same way. You have a command, and a set of parameters. The parameters depend on the command, and some commands don't take any. Here are a few examples:

/cast Smite
\___/ \___/
  |     |
  |  parameters
  |
command


/petattack
\________/ V
    |      |
    |  parameters (empty)
    |
command


/castsequence reset=target Immolate, Corruption, Curse of Agony, Siphon Life
\___________/ \____________________________________________________________/
      |                                    |
   command                            parameters

Macro options allow you to choose a set of parameters based on a number of criteria. At the highest level, you have a set of criteria/parameter groups separated by semicolons. The criteria consist of zero or more sets of conditions. Each condition set is enclosed with square brackets. Here is an illustration of this basic syntax.

/command [conditions] [more conditions] parameters; [conditions] parameters ...

As you saw in the basic examples above, the command is evaluated from left to right. As soon as it finds a set of conditions that are true, it runs the command with the corresponding parameters. If there are no conditions in a clause, it will always be true. In fact, you can imagine a single-spell /cast command as a macro option with one clause that has no conditions.

Condition syntax

Each set of conditions is a simple comma-separated list. They can appear in any order, though [target=] is always taken into account first, before any of the conditionals. Think of the comma as an "and." A condition like [help, nodead, target=focus] means "My focus is friendly AND not dead."

Conditions themselves, though, have a few building blocks. First off, as you just saw with "nodead", you can put "no" in front of a condition to mean the opposite. Notice that [nohelp] does not mean the same thing as [harm]. [harm] and [help] both return true only if there is a target to begin with. Furthermore, there are some targets that can neither be helped nor harmed (unflagged players of the other faction, non-combat pets, escort quests, etc.).

Some conditions also take their own sets of parameters. For example, [stance] by itself means "In any stance" (useful for every class with stances except Warriors since Warriors are always in a stance). However, you can also specify one or more particular stances to check. The set of parameters begins with a colon (:) and each parameter is separated with a slash (/) that means "or." Here's a generic illustration of the syntax of a single condition where everything inside angle brackets (<>) is optional.

[<no>condition<:parameter</parameter</parameter<...>>>>]

Here's a simple example that uses Shield Bash in Defensive or Battle Stance, but switches into Defensive Stance if you're in Berserker:

/cast [stance:1/2] Shield Bash; Defensive Stance

Note: "no" applies to the whole condition and all of its parameters. This means that [nostance:1/2] would mean "anything but stances 1 or 2"

Complete EBNF Syntax

For those who are familiar with EBNF notation, the entire macro option syntax can be represented as follows:

command = "/", command-verb, [ {command-object, ";" } command-object] ]
command-verb = ? any secure command word ?
command-object = { condition } parameters
parameters = ? anything which may be passed to the command word ?
condition = "[" condition-phrase { "," condition-phrase } "]"
condition-phrase = [ "no" ], option-word, [ ":" option-argument { "/" option-argument } ]
option-argument = ? any one-word option, such as 'shift, 'ctrl', 'target', '1', '2' ?

Empty parameters

One source of confusion comes in dealing with parameterless commands. A very common error when writing macros is to add an extra semicolon to the end, but this creates some unexpected bugs. Take the following macro:

/petattack [target=focus, harm];

To the uninitiated, that looks like it'll send your pet after your focus if it's harmful, and do nothing otherwise. However, let's look at a breakdown of this macro:

/petattack [target=focus, harm]  ;
\________/ \__________________/ V V V
    |               |           | | |
 command         options        | | parameters (empty)
                                | |
                                | options (empty)
                                |
                                parameters (empty)

See that extra blank set of options & parameters? Remember that a blank set of options always evaluates to true, so that second empty parameter gets passed to /petattack if the first conditions are false.

[target=] vs. unit parameters

Some commands accept units directly as their parameters. For example, /target party1 will target your first party member. The command /target [target=party1] while a bit more verbose has the equivalent behavior. However, in most cases the designers don't want us to be able to test conditions on one unit and then act on another, so you must use one or the other. E.g., a macro like the following will not work as expected:

/target [target=focus, dead] party1

WoW will ignore party1 because you set a unit with the [target=]. There are some specific exceptions to this rule. A few commands have "key units." If you use that unit in your [target=], WoW will allow you to specify another unit or will use the default unit for the command if you don't specify one. That last bit needs a concrete example:

/focus [target=focus, dead] [target=focus, noharm]

In this case, the key unit is focus. Since we are using [target=focus], WoW will send "target" to the /focus command since the blank /focus command operates on your target. Below is a list of all such commands, their key units, and their default units if any. To reiterate for clarity, the Key Unit is a unit you can use in [target=] that will allow you to send another unit to the command. The Default Unit is the unit that will be sent to the command if you don't provide one.

Command      | Key Unit  | Default Unit
 ------------- ----------- -------------
 /target      | target    |
 /focus       | focus     | target
 /startattack | target    | target
 /petattack   | pettarget | target

Conditionals

Now you'll get to see the complete list of conditionals and what they mean. Each conditional will be treated more thoroughly below.

Complete list

Below is the entire list of conditionals that are available to the macro system. One of the goals in the 2.0 patch was to eliminate a lot of old "smart buttons" that allowed people to essentially play the entire game spamming one key repeatedly. However, many tasks people used macros to simplify were deemed OK and given Blizzard's blessing via the macro options.

If you don't see a condition listed here, then there is no way to check for it and take a combat-related action. These are essentially non-negotiable though they may be augmented in the future.

  • help - Can cast helpful spells on the target
  • harm - Can cast harmful spells on the target
  • exists - Target exists
  • dead - Target is dead
  • stance:0/1/2/.../n - In a stance
  • stealth - Stealthed
  • modifier:shift/ctrl/alt - Holding the given key
  • button:1/.../5/<virtual click> - Macro activated with the given mouse button
  • equipped:<item type> - item type is equipped (item type can be an inventory slot, item type, or item subtype)
  • channeling:<spell name> - Channeling the given spell
  • actionbar:1/.../6 - Given action bar page is selected
  • pet:<pet name or type> - The given pet is out
  • combat - In combat
  • mounted - Self explanatory
  • swimming - Self explanatory
  • flying - Mounted or in flight form AND in the air.
  • flyable - In the Outland
  • indoors - Self explanatory
  • outdoors - Self explanatory
  • party - Target is in your party
  • raid - Target is in your raid/party
  • group:party/raid - You are in the given type of group

help & harm

These two have been covered fairly thoroughly so far. I can't really think of anything to add right now, but I will leave this section here for completeness.

exists

This determines whether the given unit exists. In other words, if you don't have a target, [exists] will return false. If you have a focus, [target=focus, exists] would be true. Note that in some cases [exists] is unnecessary. [help], [harm], [dead], [party], & [raid] all imply [exists] if they're true.

dead

If you have a target and it's dead, this will be true. This condition has been briefly mentioned above for an example.

stance:0/1/2/.../n

Stance is the generic term used for Warriors, Druids, Rogues, Priests (Shadowform) and Shaman (Ghost Wolf). Stances are only applicable to situations where certain abilities are only usable in specific forms. Because of this, Paladin auras (despite being on the shapeshift bar) and Hunter aspects are NOT considered stances.

The simplest form of [stance], as mentioned previously, means that you are in any stance whatsoever. It is equivalent to [stance:1/2/3/.../n] where n is the number of stances you have. [stance:0] is equivalent to [nostance] so you can use a conditional like [stance:0/3] to evaluate as true if you are either in stance 3 or not in any stance.

The stances themselves are ordered the same way as they appear on your shapeshift bar. So a Druid with Bear, Aquatic, Cat, & Travel forms would have stances 1 through 4. Here is a simple chart to help you remember stance numbers (thanks Neuro :P):

Stance Warrior Druid Priest Rogue Shaman
1 Ability warrior offensivestance [Battle Stance] Ability racial bearform [Bear Form] Spell shadow shadowform [Shadowform] Ability stealth [Stealth] Spell nature spiritwolf [Ghost Wolf]
2 Ability warrior defensivestance [Defensive Stance] Ability druid aquaticform [Aquatic Form]      
3 Ability racial avatar [Berserker Stance] Ability druid catform [Cat Form]      
4   Ability druid travelform [Travel Form]      
5   Spell nature forceofnature [Moonkin Form],
Tree of Life Form
     
6   Ability druid flightform [Flight Form]      

Note: if a Druid is missing a form, all the higher-number ones will be shifted upwards on the chart.

Example:

/cancelform [nostance:0/1]
/cast [stance:1] Faerie Fire (Feral)(); [nostance] Faerie Fire

stealth

While the Rogues among you may find this redundant since [stance] behaves the same way, [stealth] also applies to Night Elves' Shadowmeld, Mages' Invisibility, etc.

modifier:shift/ctrl/alt

Modifier keys are a convenient way to save action bar space and make certain decisions. Say you want an implied targeting macro but use one spell normally and another spell when you're holding down a modifier key:

/cast [modifier, help] [modifier, target=targettarget, help] Flash Heal; [help] [target=targettarget] Greater Heal

This macro will cast a helpful spell on either your target if it's friendly, or your target's target otherwise. When you hold any modifier key, it will cast Flash Heal. Otherwise it will cast Greater Heal.

Of course, you can specify particular modifier keys for more control a la [modifier:shift/ctrl] which means "shift or control." If you want to specify both, you need two modifier conditionals: [modifier:shift, modifier:ctrl].

Beware if you're using keybindings for your macros. If you bind A to a macro with, say, [modifier:shift] and you have something else bound to SHIFT-A, the SHIFT-A binding will take precedence and your macro will not run.

button:1/2/.../5/<virtual click>

Similar to [modifier], [button] allows your macro to respond differently based on which mouse button is being used to activate the macro. Button numbers 1-5 correspond to left, right, middle, button 4, & button 5. If your macro is activated by a keybinding, [button:1] will always be true. As an example, here is the macro I use for mounting:

#show Swift Green Mechanostrider
 /use [nobutton:2, flyable, nomounted] Ebon Gryphon; [nomounted] Swift Green Mechanostrider
 /dismount [noflying] [button:2]

Behavior when not mounted: left-clicking will pick Ebon Gryphon if it can be used (flyable), otherwise it will use the Swift Green Mechanostrider. Right-clicking will always pick the mechachicken.

Behavior when mounted: left-click will only dismount if not flying. Right-click will always dismount.

The "virtual click" can usually be ignored, but if you use a bar mod it can be useful. Action bars that respond to various state changes translate clicks to virtual ones that determine which action to use. Because these virtual clicks are addon-specific, I'm not going to go into any further detail here.

equipped:<item type>

[equipped] allows you to determine if a particular type of gear is equipped. The item type can be an inventory slot name, an item type, or an item subtype. See ItemType and InventorySlotName for lists of these types. Here is the macro I use to pick Shield Bash or Pummel depending on what I've got equipped:

#show [equipped:Shields] Shield Bash; Pummel
 /cast [equipped:Shields,stance:1/2] Shield Bash; [equipped:Shields] Defensive Stance; [stance:3] Pummel; Berserker Stance

The #show line is used to make it show either Shield Bash or Pummel. Without it, it would show the stance spells as well, when applicable. Here's some pseudocode that illustrates how the second line works:

if a shield is equipped and I'm in Battle or Defensive stance then
    /cast Shield Bash
elseif a shield is equipped then
    /cast Defensive Stance
elseif I'm in Berserker stance then
    /cast Pummel
else
    /cast Berserker Stance

Here's another macro that lets you cast Overpower with a bit more vigor:

/equip [noequipped:Two-Handed Axes] Honed Voidaxe
/cast [nostance:1] Battle Stance; [equipped:Two-Handed Axes] Overpower

channeling:<spell name>

Normally, if you are channeling a spell and begin casting another spell, it will cancel the channel. This option allows you to keep that from happening, and also has a few other uses. For instance, maybe you do want to cancel one particular spell but not another. [channeling] alone matches any spell and you can also list an arbitrary number of spell names to check.

Note: channeling is NOT the same as casting. The [channeling] conditional only applies to spells like Arcane Missiles, Drain Life, Mind Flay, etc. where after the initial cast, the spell makes its effect over time.

actionbar:1/.../6

The default UI provides a number of action bar pages. These pages only affect the lower left action bar that is visible by default. Luckily, you can make macros that respond to different action bar pages and place them on the other action bars. One example is for a hunter to emulate stances using their aspects:

/swapactionbar 1 2
/cast [actionbar:1] Aspect of the Hawk; Aspect of the Monkey

This macro will switch between action bars 1 and 2. When it switches to bar 1 it casts Aspect of the Hawk, and when it goes to bar 2 it casts Aspect of the Monkey.

pet:<pet name or type>

Every class with a pet (including mind controlling Priests) will find this one useful. It allows you to choose an action based on which pet you have out. You can specify your pet's name or your pet's type (Voidwalker, Boar, Imp, Wolf, etc.). [pet] by itself matches any pet. For example, a Mage can choose between their elemental's Freeze spell or their own Frost Nova:

/cast [pet] Freeze; Frost Nova

combat

True if you are in combat.

mounted, swimming, flying, indoors & outdoors

These are all fairly self-explanatory. They all apply to you, the player.

flyable

As briefly mentioned above, [flyable] determines whether you are in the Outland where you're allowed to use a flying mount.

party & raid

These return true if the target is in your party or raid, respectively.

group:party/raid

This lets you determine whether you are in the given group type. [group] is equivalent to [group:party]. [group:raid] implies [group:party]. This can be useful for buffing classes. For example:

/cast [group, nomodifier] Arcane Brilliance; [help] [target=player] Arcane Intellect

If you're in a group it will normally cast Arcane Brilliance. If you're holding a modifier key or you're solo, it will cast Arcane Intellect on a friendly target or yourself.

Part III: Miscellany

Custom Icons

If you would like to use custom icons for your macros, you can place them in your World of Warcraft\Interface\Icons folder (creating this folder if it doesn't exist). The files must follow the same guidelines for UI textures. Namely, they must be either BLP files or 24-bit/24-bit alpha uncompressed TGA files. Their dimensions must be powers of two up to 512 (e.g. 32x32, 512x128). Note: any images that aren't square will look squished on your action bar.

Keeping macros on multiple computers

Until Blizzard decides to store macros on the server, you must copy your World of Warcraft\WTF\Account\Youraccountname folder between computers. This will also preserve all of your settings for any addons you have installed, though the addons will also have to be installed on each computer.

If you would rather have your macros and nothing else, you need to copy World of Warcraft\WTF\Account\Youraccountname\macros-cache.txt for your general macros, and World of Warcraft\WTF\Account\Youraccountname\Yourrealmname\Yourcharactername\macros-cache.txt for character-specific macros.

More Information

If you have a specific question and did not find your answer here, check out the Macros FAQ on the UI & Macros forum. It contains answers to quite a few questions as well as numerous example macros. You should also take a look at http://www.wowwiki.com for more inspiration. There are a number of macro-related articles as well as details of the WoW API for use with scripts (/run).

Finally, don't be shy to ask questions on the forums. As long as you understand the basics that this guide has presented and you demonstrate an effort to solve the problem yourself, the posters will be more than happy to help.

Acknowledgments

All our cookie are belong to Slouken! He has consistently been one of the most accessible and responsive Blizzard employees on the forums, and the macro system wouldn't be where it is today without his consideration of everyones' suggestions.

Thanks also have to go out to Iriel, Tem, Cladhaire, and others who are intimately familiar with the WoW UI and have shared their knowledge with the rest of the world.

Some other characters roaming around that deserve some recognition for their contributions to the community are Neuro, Shirik, Jelly, Lunessa, Troodi, Lealla, Aella, Valaron, and plenty of others I'm forgetting as I am wont to do.

/rollcredits