WoW:API GetNumFriends

From AddOn Studio
Revision as of 19:48, 7 January 2006 by WoWWiki>Gxam
Jump to navigation Jump to search
GetNumFriends - Documentation by jpopcenter

Returns how many friends you have.

numberOfFriends = GetNumFriends()

Parameters

Returns

numberOfFriends
numberOfFriends
Integer - The number of friends you have (i.e. the highest valid friend index you can use to get friend information).

Example

DEFAULT_CHAT_FRAME:AddMessage("I've got " .. GetNumFriends() .. " friend(s)");

Result

Displays "I've got 3 friend(s)"

Template:WoW API