WoW:API GetPartyLeaderIndex: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 22: Line 22:
:- If you are not in a party (suspect nil)
:- If you are not in a party (suspect nil)
:- If you yourself is the party leader (suspect nil)
:- If you yourself is the party leader (suspect nil)
:- If the leader is in another party in a raid group (suspect nil)


----
----
;''Description''
;''Description''


: Returns the index of the current party leader (1-4).
: Returns the index of the current party leader (1-4). If the leader is in another party in a raid group, the function returns 0 (not nil).


;''See Also''
;''See Also''

Revision as of 16:10, 31 May 2006

GetPartyLeaderIndex -Documentation by Mikk-

Returns the index of the current party leader (1-4).

 partyLeaderIndex = GetPartyLeaderIndex();

Note: Party members 1-4 does not include yourself. Use IsPartyLeader() to test if you yourself is the party leader.


Arguments
None

Returns
(Number partyLeaderIndex)
partyLeaderIndex
The index of the current party leader (1-4).
Cases not yet tested
- If you are not in a party (suspect nil)
- If you yourself is the party leader (suspect nil)

Description
Returns the index of the current party leader (1-4). If the leader is in another party in a raid group, the function returns 0 (not nil).
See Also



Template:WoW API