WoW:MACRO who: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created)
 
(Punc, grmr, correcting Notes: all results, not intersection of sets returned, tighten)
Line 6: Line 6:


== Aliases ==
== Aliases ==
:none
None.
 


== Arguments ==
== Arguments ==
:;filter : Filtering options to perform the query with.  Players are queried based on name, guild name, zone, race, class, and level.
Filter: Players are queried on name, guild name, zone, race, class, and level with the following parameters:
 
=== Filtering ===
You may specify custom filters per field by using the following formats:


:n-"name"
:n-"name"
Line 22: Line 18:
:level
:level
:minlevel-maxlevel (all numeric queries are assumed to be level)
:minlevel-maxlevel (all numeric queries are assumed to be level)


== Examples ==
== Examples ==
Line 33: Line 28:


== Notes ==
== Notes ==
:Returns up to a maximum of 49 players.
*Returns up to a maximum of 49 players.
:If given search terms are not assigned to a particular field, all fields are queried for all results, and the Intersection of all the sets are returned.
*If search values are not assigned to a particular field, all fields are queried and all results are returned (up to the maximum).

Revision as of 21:03, 14 May 2010

Slash commands


Perform a query on the server for online players matching your query

/who filter

Aliases

None.

Arguments

Filter: Players are queried on name, guild name, zone, race, class, and level with the following parameters:

n-"name"
g-"guildname"
z-"zone"
r-"race"
c-"class"
level
minlevel-maxlevel (all numeric queries are assumed to be level)

Examples

-- This shows you everyone in Ironforge from level 1 through 10
/who z-"Ironforge" 1-10
-- Either of these show you all level 80 Draenei Priests
/who 80 r-"Draenei" c-"Priest"
/who 80 Draenei Priest

Notes

  • Returns up to a maximum of 49 players.
  • If search values are not assigned to a particular field, all fields are queried and all results are returned (up to the maximum).