WoW:API GetPetExperience
Jump to navigation
Jump to search
Returns the pet's current XP total, and the XP total required for the next level.
local currXP, nextXP = GetPetExperience();
- Arguments
- None
- Returns
- (Number currXP, Number nextXP)
- currXP
- The current XP total
- nextXP
- 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.