Requests a list of characters meeting given search criteria from the server. Text in the query will match against any of the six searchable fields unless one of the specifiers below is used; multiple specifiers can be used in one query. Queries are case insensitive.
n-"name"- Search for characters whose name containsnamec-"class"- Search for characters whose class name containsclassg-"guild"- Search for characters in guilds whose name containsguildr-"race"- Search for characters whose race name containsracez-"zone"- Search for characters in zones whose name containszoneX- Search for characters of levelXX-- Search for characters of levelXor higher-X- Search for characters of levelXor lowerX-Y- Search for characters between levelsXandY(inclusive)
Results are not available immediately; the CHAT_MSG_SYSTEM or WHO_LIST_UPDATE event fires when data is available, as determined by the SetWhoToUI() function.
See also Social functions.
Signature:
SendWho("filter")
Arguments:
filter- A Who system search query (cannot be nil; use the empty string""to specify a blank query) (string)
Examples:
-- Search for human warriors named Donald in Elwynn Forest
SendWho('donald z-"elwynn" r-"human" c-"warrior"')