WoW:API GetPetExperience: Difference between revisions
Jump to navigation
Jump to search
GetPetExperience
mNo edit summary |
No edit summary |
||
Line 28: | Line 28: | ||
: Returns the pet's current XP total, and the XP total required for the next level. | : Returns the pet's current XP total, and the XP total required for the next level. | ||
---- | ---- | ||
{{ | {{WoW API}} | ||
Revision as of 12:33, 4 January 2006
Returns the pet's current XP total, and the XP total required for the next level.
currXP, nextXP = GetPetExperience();
- Arguments
- none
- Returns
- (currXP, nextXP)
- currXP
- Number - The current XP total
- nextXP
- Number - The XP total required for the next level
- Example
local currXP, nextXP = GetPetExperience(); PetPaperDollFrameExpBar:SetMinMaxValues(min(0, currXP), nextXP); PetPaperDollFrameExpBar:SetValue(currXP);
- Description
- Returns the pet's current XP total, and the XP total required for the next level.