Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

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.

Advertisement