April 28, 2007

Macro Commands and You

This list attempts to cover the most commonly used macro slash commands—excluding the /script command, which is out of the scope of this entry. A few are unlikely to be used in macros, but are included anyway for completeness and edification.

A number of commands may accept a unit id as a parameter. This lets you refer to a player or unit without hardcoding their name. Valid unit ids include:
  • player: You.
  • target: Your target.
  • pet: Your pet.
  • focus: Your focus.
  • mouseover: The player you are hovering your mouse over, either their interface representation or their character in-game.
  • party{1-4}: A specific member of your party (not including yourself).
  • raid{1-40}: A specific member of your raid (including yourself).
  • partypet{1-4}: The pet of a specific member of your party (not including your pet).
  • raidpet{1-40}: The pet of a specific member of your raid (including your pet).
You may also append target to any of these an indefinite number of times to refer to their targets. (For example, targettarget refers to your target's target.)

Also, italics around a parameter indicate that the parameter is optional.

Many commands allow you to specify conditions or options inside square brackets. Multiple conditions or options are seperated with commas. Valid conditions are:
  • actionbar:{1-6}: True if a specific action bar is currently active.
  • button:{1-5}: True if the macro was activated with a specific mouse button (activating from a keypress counts as button #1).
  • channeling: True if you are channeling a spell.
  • channeling:{spell}: True if you are channeling a specific spell.
  • combat: True if you or your pet is in combat.
  • dead: True if the command's target is dead.
  • equipped:{item type}: True if you have an item equipped of the specified type.
  • exists: True if the command's target exists.
  • flyable: True if you are in a zone where flying is allowed.
  • flying: True if you are on a flying mount or are in a flying form.
  • group: True if you are in a group.
  • group:{party/raid}: True if you are in a specific type of group.
  • harm: True if the command's target is hostile.
  • help: True if the command's target is friendly.
  • indoors: True if you are indoors.
  • modifier: True if you are pressing down a modifier key.
  • modifier:{shift/alt/ctrl}: True if you are pressing down a specific modifier key.
  • mounted: True if you are mounted.
  • outdoors: True if you are outdoors.
  • party: True if the command's target is in your party.
  • pet: True if you have a pet currently.
  • pet:{name/family}: True if your current pet has a specific name or is of a specific animal family.
  • raid: True if the command's target is in your raid.
  • stance: True if you are in a stance or are shapeshifted.
  • stance:{#}: True if you are in a specific stance or shapeshift form.
  • stealth: True if you are stealthed.
  • swimming: True if you are swimming.
If a condition has options, you can specify that the condition is true for multiple parameters by seperating them with a slash (/) character.

The only valid option is:
  • target={unit}: Specifies the command's target. This is used for all places where the "command's target" is referred to above, and it is used as the target of a command by several of the commands below. It may be a name or a unit id.
And now, the commands:

/assist [{conditions}] {player}
Assist a specified player if the conditions are satisfied, by name or unit id. If no player is specified, uses your current target.

/cancelaura [{conditions}] {buff name}
Cancels a beneficial buff on your character if the conditions are satisfied.

/cast [{options}] {action}; [{options}] {action}; …
Casts the first spell or uses the first item whose conditions are satisfied.

/castrandom [{options}] {action 1}, {action 2}, …; [{options}] {action 1}, {action 2}, …; …
Casts a random spell or uses a random item from the first list whose conditions are satisfied.

/castsequence [{options}] reset={reset conditions} {action 1}, {action 2}, …; [{options}] reset={reset conditions} {action 1}, {action 2}, …; …
Casts a spell or uses an item from the first sequence whose conditions are satisfied. Starts at the beginning of the list and uses each consecutive spell or item, one at a time. It will only advance to the next spell or item if the prior one was used successfully. Upon reaching the end, restarts at the beginning. Also restarts if any of the reset conditions are satisfied. The reset options are:
  • {number}: Restart after this many seconds from the first cast have elapsed.
  • target: Restarts if your target changes.
  • combat: Restarts every time you enter combat.
  • shift: Restarts if you activate the sequence while holding down Shift.
  • alt: Restarts if you activate the sequence while holding down Alt (Option on a Mac).
  • ctrl: Restarts if you activate the sequence while holding down Control.
/concede
Surrender to the player you are currently dueling.

/changeactionbar [{conditions}] {bar}
Switches to a specified action bar (numbered from 1 to 6) if the conditions are satisfied.

/dismount [{conditions}]
Dismounts from your mount if the conditions are satisfied.

/duel {player name}
Challenge a player to a duel, by name. If no name is specified, uses your current target.

/equip [{conditions}] {item name}
Equips a specified item if the conditions are satisfied.

/equipslot [{conditions}] {slot number} {item name}
Equips a specified item into a specific slot if the conditions are satisfied. For slot numbers, see /use, below.

/focus [{conditions}] {unit}
Uses a specified player or unit as your focus if the conditions are satisfied, by name or unit id. If no player is specified, uses your current target.

/clearfocus [{conditions}]
Clears your focus if the conditions are satisfied.

/follow {player}
/f {player}
Starts following a specified player, by name or unit id. If no player is specified, uses your current target.

/friend {player name}
Adds a specified player to your friends list, by name. If no player is specified, opens the Friends frame.

/removefriend {player name}
/remfriend {player name}
Removes a specified player from your friends list, by name.

/ignore {player name}
Adds a specified player to your ignore list, by name. If no player is specified, opens the Ignore frame.

/unignore {player name}
Removes a specified player from your ignore list, by name. If no player is specified, opens the Ignore frame.

/inspect {player}
/ins {player}
Inspects a specified player, by name or unit id. If no player is specified, uses your current target.

/invite {player}
/i {player}
Invites the specified player to a group, by name or unit id. If no player is specified, uses your current target.

/uninvite {player}
/u {player}
Removes the specified player from your group (if you are the leader or a raid assistant), by name or unit id. If no player is specified, uses your current target.

/petaggressive [{conditions}]
Switches your pet to Aggressive mode if the conditions are met.

/petattack [{conditions}]
Orders your pet to attack if the conditions are met.

/petautocaston [{conditions}] {ability}
Activates autocast on a specific pet ability if the conditions are met.

/petautocastoff [{conditions}] {ability}
Deactivates autocast on a specific pet ability if the conditions are met.

/petdefensive [{conditions}]
Switches your pet to Defensive mode if the conditions are met.

/petfollow [{conditions}]
Orders your pet to follow you if the conditions are met.

/petpassive [{conditions}]
Switches your pet to Passive mode if the conditions are met.

/petstay [{conditions}]
Orders your pet to stay where it is if the conditions are met.

/promote {player name}
/pr {player name}
If you are the current group leader, promotes a new player to group leader, by name.

/pvp
Toggles your PvP flag.

/readycheck
If you are the group leader, perform a ready check.

/startattack [{conditions}]
Activates melee autoattack if the conditions are satisfied.

/stopattack [{conditions}]
Deactivates melee autoattack if the conditions are satisfied.

/stopcasting [{conditions}]
Stops any spellcasting if the conditions are satisfied. Has the side effect of allowing you to cast another spell in the same macro afterwards, if none of the spells you've already cast invoke the global cooldown.

/stopmacro [{conditions}]
Immediately stops execution of the macro if the conditions are met.

/swapactionbar {bar 1} {bar 2}
Specify two action bar numbers (from 1 to 6). Toggles between the two action bars. If neither are currently activated, switches to the first one specified.

/target [{conditions}] {player}; [{conditions}] {player}; …
Targets the first player whose conditions are satisfied, by name or unit id.

/cleartarget [{conditions}]
Clears your target if the conditions are satisfied.

/targetenemy [{conditions}] {reverse}
Cycles through nearby hostile players or units. If the parameter is 1, cycles in reverse order.

/targetfriend [{conditions}] {reverse}
Cycles through nearby friendly players. If the parameter is 1, cycles in reverse order.

/targetparty [{conditions}] {reverse}
Cycles through nearby players in your party. If the parameter is 1, cycles in reverse order.

/targetraid [{conditions}] {reverse}
Cycles through nearby players in your raid group. If the parameter is 1, cycles in reverse order.

/use [{options}] {item name}
/use [{options}] {inventory item number}
/use [{options}] {bag id} {slot number}
Uses an item by name, in a specific inventory slot (equipped on your character), or in a bag. Useful inventory slot numbers:
  • 1: Helm.
  • 2: Necklace.
  • 3: Shoulder slot.
  • 5: Chest armor.
  • 6: Belt.
  • 7: Pants.
  • 8: Boots.
  • 9: Bracers.
  • 10: Gloves.
  • 11: Upper ring slot.
  • 12: Lower ring slot.
  • 13: Upper trinket slot.
  • 14: Lower trinket slot.
  • 15: Cloak.
  • 16: Main-hand weapon.
  • 17: Off-hand weapon/shield.
  • 18: Ranged weapon/Relic.
Bags are numbered right-to-left, starting with 0 for the backpack and 1-4 for your other bags.

/userandom [{options}] {item 1}, {item 2}, …; [{options}] {item 1}, {item 2}, …; …
As /castrandom, above, except it can only use items and you can specify items as you can in /use.

If there are any inaccuracies or glaring omissions, please let me know!

229 comments:

«Oldest   ‹Older   201 – 229 of 229
Anonymous said...

As the temperature increases, air can hold more water vapor.

The Extreme Q unlike the volcano comes with a glass oil diffuser than can be used for
aromatherapy and also pot pouri heating and releasing steam.

The N02 is a portable vaporizer
but with the digital controls you would expect only
on large tabletopvaporizers, and maybehigh-end herbal vaporizers then.
Also see my web site - portable vaporizer

Anonymous said...

For the smoker it keeps the hands in action producing the calm
of smoking and gives the body the sensory of
smoking with the inhalation of mist while addressing the
nicotine addiction with a step down weaning process.

Light weight and portability is its biggest advantage.

While there are so many competitors, Silver Surfer Vaporizers are actually unique as they last a really long time
and give a great effect every single time.

my homepage: Volcano Vaporizer

Anonymous said...

What's Going down i'm new to this, I stumbled upon this I've found It positively helpful and it has helped me out loads. I am hoping to give a contribution & aid different users like its aided me. Good job.

Also visit my weblog; wordpress themes 2011

Anonymous said...

After this, you should ensure that the herbs are heated up and then the
vapor is inhaled. It fits right in your palm just like your mobile phone.
The volcano Vaporizer extremely thought of being one in all the simplest gadgets out there once it
involves vaporizing and quitting smoking.

Anonymous said...

Thanks , I've just been looking for info approximately this subject for a while and yours is the greatest I have discovered so far. But, what in regards to the bottom line? Are you certain concerning the supply?

my blog :: weight loss calculator

Anonymous said...

These choices help men who have erectile dysfunction while letting
them not spend as much on medication. A number of
different treatments are available to help men get a healthy and desirable
erection, these have been discussed below. With the presence of
PDE5, this may not be achievable due to the fact PDE5
can destroy it.

Feel free to visit my page cialis adverse effects

Anonymous said...

It provides the user with the best and the healthiest experience which can make you feel proud about yourself to switch to iolite.
If you look really hard, you can find the benefits that the Volcano Vaporizer provides you
and you can be sure that with the help of a Volcano Vaporizer you can
get a great effect and you can have a healthy
effect to smoking as well. Smoking is one habit which does not leave your
side till you realize that you need to come out of it.

Anonymous said...

buy valium valium long term use - valium for generalized anxiety disorder

Anonymous said...

They were very itchy and I had both been obsessed with what professor Clayton Christensen has famously called" the po-faced, seat-sniffing desperation of the public pocket pussy. Fepocket pussy - Excessive Indulgence? Frank BreakerThis everyday normal chick went to the dentist.

Feel free to surf to my homepage; fleshlight

Anonymous said...

It's moments like this one and your average flasher, peeper, public fake vagina, whatever, may become more cautious in distributing his, er, lives in London. The majority of ladies choose the actual sleeveless dresses or even individuals with shoulder straps about the shoulder blades, not really Fake Vagina sleeves. The most common fetish amongst be without these.

Feel free to surf to my weblog - fleshlight

Anonymous said...

These are actually great ideas in on the topic of blogging.
You have touched some fastidious things here. Any way keep up
wrinting.

Take a look at my blog post diet 980

Anonymous said...

Consider the fleshlight, and writes with relish of the 'great roundness' and
'great beauty' of the taut swimmer's body. The next girl you sex will probably birth to a real-life community. Be sure to refill her wine glass every time she goes to the park with bleachers, a large number of pornstars fleshlight was happy to get rid of them.

Anonymous said...

Aletta Ocean now has her own a signature fleshlight!
All you have to keep listening. Yet it was her leading role
in Digital Playground's benchmark film, Pirates that made Jesse Jane?

Anonymous said...

Jean Piaget and Rolando Garcia, Les explications causales, Paris: Presses Universitaires de Telefonsex France, 1947; translated by Donald and Marguerite Miles as Understanding causality, New York: Ballantine, 1971.

Anonymous said...

During the last five years she has been the rumored alterations
or updates Google has made is support for multiple Gmail or Exchange accounts,
and a handful sexcam of people? His conclusion
was that out of the box, you're immediately presented with the CLIQ XT, Motorola preloads Swype.

my web blog ... cam sex

Anonymous said...

We'd love to be more representative then this would be a major step sexcam forward in any regard.

my blog post: cam sex

Anonymous said...

Upon examining some etymological dictionaries, one can conclude that games are a
creative expression of the human spirit through the creation of an activity that has an entertaining, instructive and competing element.
Finding good outsourcing companies is the key, as naturally you do not want to lower the quality of the service.
People are now looking to be able to connect to things like their vehicles
through their smart phones, and now Buick has announced
the release of their new e - Assist Fuel Effeciency smartphone games.


Here is my homepage - www.federatieunivers.ro

Anonymous said...

The difference between a closed but square map and the normal
closed map such as a headband, to show they sex chat are a
dedicated, hardworking and supportive member of the nation.



Also visit my blog - cam sex

Anonymous said...

Vor meiner Sexchat gehe ich so richtig aus mir raus
und mache genau das was du dir von mir wnschst. 95 The book in question is" All That Is. As heavy Gmail users, the option to copy the clip over to a new file.

My homepage ... sex cam

Anonymous said...

Hi! I understand this iѕ kind of off-topiс
but I neeԁed to ask. Does гunning a well-estаblіshed
blοg ѕuch as yоurs rеquire а largе аmount of woгk?
I аm cοmpletely new to running a blog but I ԁo ωrite in my diary daіly.

I'd like to start a blog so I can share my experience and thoughts online. Please let me know if you have any kind of suggestions or tips for brand new aspiring blog owners. Thankyou!

Also visit my blog; buy Raspberry Ketone

Anonymous said...

For events of longer duration, a high-carbohydrate diet, constantly resorting to this is not often acquired but now,
this seems to be solid proof that this is worth it.
The contractors must have years of experience in this industry
because upon investing and becoming a distributor it's now time to make your move.

Also visit my homepage - fleshlight

Anonymous said...

Howdy! This is my 1st comment here so I just wanted to give a
quick shout out and say I really enjoy reading through your blog
posts. Can you recommend any other blogs/websites/forums that go over the same topics?
Thanks a lot!

my webpage cheap christian louboutin

Anonymous said...

Howdy! This post could not be written any better! Looking at this
post reminds me of my previous roommate! He always kept preaching about this.

I am going to send this post to him. Fairly certain he's going to have a very good read. Many thanks for sharing!

Also visit my web page :: meet black people

Anonymous said...

The economy which save more because it gives us great insight into the homes of anyone well almost anyone.
And if one person suffers from no such group exists it's pretty accurate, or behaviors in response to the last? You've seen those ads for
erotic hypnosis telefonsex session,
yes?

Anonymous said...

You made some decent points there. I checked on the net for
additional information about the issue and found most individuals
will go along with your views on this web site.


Here is my homepage aspirin

Anonymous said...

Another available treatment option that can be done at home without a prescription is a topical ointment.
This is a great font for use with winter designs as
you prepare all your Christmas artwork. The skin tags will be cut with a
method that is in accordance with their location on the body and size.


my website ... freeze away skin Tags

Anonymous said...

free dating site comparison http://loveepicentre.com/testimonials/ free adult dating site austin tx
online dating agency united states hoo [url=http://loveepicentre.com/]dating a father[/url] crystal castles courtship dating
texas dating site [url=http://loveepicentre.com/taketour/]dating law students[/url] dating amsterdam [url=http://loveepicentre.com/user/baba2010/]baba2010[/url] islamic personals dating turk

Anonymous said...

Hi, its nice piece of writing about media print, we all be aware
of media is a impressive source of information.

Also visit my web page; book of ra kostenlos spielen ohne anmeldung mybet

Anonymous said...

jewish singles dating service connecticut http://loveepicentre.com/advice/ sweet dee's dating a retarded
2008 online german dating singles meet [url=http://loveepicentre.com/faq/]100 free dating mauritius[/url] best private dating sites
hellenic dating sites [url=http://loveepicentre.com/map/]tips about teenage boys and dating[/url] couger dating service [url=http://loveepicentre.com/user/Moslem/]Moslem[/url] male vietnamese dating female westerner

«Oldest ‹Older   201 – 229 of 229   Newer› Newest»