WoW:API GetNumGuildMembers: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 15: | Line 15: | ||
<hr /> | <hr /> | ||
<dl><dt><em>Notes</em></dt></dl> | <dl><dt><em>Notes</em></dt></dl> | ||
<dl><dd>This function seems to return 0 if you have not yet opened the guild roster. I suspect that a call to GuildRoster(), before calling this function will cause it to return the proper result.</dd></dl> | <dl><dd>This function seems to return 0 if you have not yet opened the guild roster. I suspect that a call to GuildRoster(), before calling this function will cause it to return the proper result.</dd> | ||
<dd>This function will return a maximum value of 500.</dd></dl> | |||
<hr /> | <hr /> | ||
{{Template:WoW API}} | {{Template:WoW API}} | ||
Revision as of 23:46, 26 February 2006
Returns the number of guild members
- Arguments
- offline - boolean
- Returns
- If called with no argument gets number of online guild members. If offline argument is true get number of all guild members.
- Example
local numGuildMembers = GetNumGuildMembers();
local numAllGuildMembers = GetNumGuildMembers(true);
- Notes
- This function seems to return 0 if you have not yet opened the guild roster. I suspect that a call to GuildRoster(), before calling this function will cause it to return the proper result.
- This function will return a maximum value of 500.