WoW:API GetPVPRankInfo: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(upgraded deprecated template)
(Updated to match the current API boilerplate.)
Line 1: Line 1:
{{wowapi}}
{{wowapi}} __NOTOC__
'''GetPVPRankInfo(rank [, unit])'''
 


Get information about a specific rank.
Get information about a specific rank.
rankName, rankNumber = GetPVPRankInfo(rank [, unit]);


rankName, rankNumber = GetPVPRankInfo(rank [, unit]);


----
== Arguments ==
;''Arguments''


:(rank [, unit])
:(rank [, unit])
Line 13: Line 12:
:;unit : String - The [[API TYPE UnitId|UnitId]] to query (e.g. "player", "party2", "pet", "target", "mouseover" etc.). This argument is needed to return the correct rank for enemy units (otherwise it would return ranks of player's faction only).
:;unit : String - The [[API TYPE UnitId|UnitId]] to query (e.g. "player", "party2", "pet", "target", "mouseover" etc.). This argument is needed to return the correct rank for enemy units (otherwise it would return ranks of player's faction only).


----
;''Returns''


rankName, rankNumber
== Returns ==
:rankName, rankNumber
 
:; rankName : String - The rank's name
:; rankNumber : Number - The rank's number
 


----
== Examples ==
;''Example''
  if (UnitPVPRank("mouseover") >= 1) then
  if (UnitPVPRank("mouseover") >= 1) then
     rankName = GetPVPRankInfo(UnitPVPRank("mouseover"), "mouseover");
     rankName = GetPVPRankInfo(UnitPVPRank("mouseover"), "mouseover");
     -- rankName now contains the localized rank for mousover unit (e.g. grunt or similar).
     -- rankName now contains the localized rank for mousover unit (e.g. grunt or similar).
  end
  end

Revision as of 17:36, 25 June 2007

WoW API < GetPVPRankInfo


Get information about a specific rank.

rankName, rankNumber = GetPVPRankInfo(rank [, unit]);


Arguments

(rank [, unit])
rank
Number - Specifies the number of the rank (as returned by UnitPVPRank("unit"))
unit
String - The UnitId to query (e.g. "player", "party2", "pet", "target", "mouseover" etc.). This argument is needed to return the correct rank for enemy units (otherwise it would return ranks of player's faction only).


Returns

rankName, rankNumber
rankName
String - The rank's name
rankNumber
Number - The rank's number


Examples

if (UnitPVPRank("mouseover") >= 1) then
    rankName = GetPVPRankInfo(UnitPVPRank("mouseover"), "mouseover");
    -- rankName now contains the localized rank for mousover unit (e.g. grunt or similar).
end