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.
currXP, nextXP = GetPetExperience();
Parameters[edit]
Returns[edit]
- currXP
- Number - The current XP total
- nextXP
- Number - The XP total required for the next level
Example[edit]
local currXP, nextXP = GetPetExperience(); DEFAULT_CHAT_FRAME("Pet experience: " .. currXP .. " / " .. nextXP);
Result[edit]
Pet experience is displayed in the default chat frame.