WoW:API SendWho: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Move page script moved page API SendWho to API SendWho without leaving a redirect) |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} | |||
Sends a [[Who List|Who request]], much like using the [[Slash Command|slash command]] ''/who'' or entering a query in the entry field of the [[Who List]]. | Sends a [[Who List|Who request]], much like using the [[Slash Command|slash command]] ''/who'' or entering a query in the entry field of the [[Who List]]. | ||
Line 33: | Line 33: | ||
---- | ---- | ||
'''''Example''''' | '''''Example''''' | ||
<pre>SendWho( | <pre>SendWho('bob z-"Teldrassil" r-"Night Elf" c-"Rogue" 10-15');</pre> | ||
'''''Result''''' | '''''Result''''' | ||
: Searches for Night Elf Rogues in Teldrassil, of levels 10-15, with the string "bob" in their names. | : Searches for Night Elf Rogues in Teldrassil, of levels 10-15, with the string "bob" in their names. |
Latest revision as of 04:47, 15 August 2023
Sends a Who request, much like using the slash command /who or entering a query in the entry field of the Who List.
SendWho(filter)
Arguments
- (String filter)
- filter
- The critera for which you want to perform a Who query, surrounded by quotation marks. This can be anything for which you could normally search in a Who query:
- These can be combined, but no more than one of each type can be searched for at once. Note that the quotation marks around the zone, race, and class must be present, and they must be escaped (\").
- None of these are required; you may send a blank query:
- /script SendWho("");
- This returns up to 50 apparently-random players, throughout the world, as if you had simply typed "/who" into the chat frame. (The quotation marks must be present, even if you are not submitting any criteria!)
Returns
- SendWho appears to always return nil.
Example
SendWho('bob z-"Teldrassil" r-"Night Elf" c-"Rogue" 10-15');
Result
- Searches for Night Elf Rogues in Teldrassil, of levels 10-15, with the string "bob" in their names.