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.
Community content is available under CC-BY-SA
unless otherwise noted.