GetPetExperience

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 1.0.0 / 1.13.2

Returns the pet's current and total XP required for the next level.

currXP, nextXP = GetPetExperience()

Parameters

Returns

currXP
number - The current XP total
nextXP
number - The XP total required for the next level

Example

local currXP, nextXP = GetPetExperience();
DEFAULT_CHAT_FRAME("Pet experience: " .. currXP .. " / " .. nextXP);

Result

Pet experience is displayed in the default chat frame.