WoW:API GetNumPartyMembers: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
(→Notes) |
||
Line 12: | Line 12: | ||
==Notes== | ==Notes== | ||
* While in a battleground, this function returns information about your battleground party. You may retrieve information about your non-battleground party using {{api|GetRealNumPartyMembers}}(). | * While in a battleground, this function returns information about your battleground party. You may retrieve information about your non-battleground party using {{api|GetRealNumPartyMembers}}(). | ||
* While in a raid, you are also in a party. You might be the only person in your raidparty, so this function could still return 0. | |||
==See Also== | ==See Also== |
Revision as of 02:23, 5 August 2010
← WoW API < GetNumPartyMembers
Returns number of party members.
partyMembers = GetNumPartyMembers()
Returns
- partyMembers
- Number - The number of party members, excluding the player (0 to 4).
Example
The snippet below adds a message stating the number of people in the player's current party to the default chat frame.
print("There are " .. GetNumPartyMembers() .. " other people in your party.");
Notes
- While in a battleground, this function returns information about your battleground party. You may retrieve information about your non-battleground party using GetRealNumPartyMembers().
- While in a raid, you are also in a party. You might be the only person in your raidparty, so this function could still return 0.