Wowpedia

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

READ MORE

Wowpedia
Register
No edit summary
({{wowapi}}, format, example.)
Line 1: Line 1:
  +
{{wowapi}} __NOTOC__
<center>'''GetPetExperience''' </center>
 
 
 
Returns the pet's current XP total, and the XP total required for the next level.
 
Returns the pet's current XP total, and the XP total required for the next level.
 
currXP, nextXP = GetPetExperience();
   
  +
==Parameters==
currXP, nextXP = GetPetExperience();
 
 
===Returns===
 
----
 
;''Arguments''
 
 
:<i>none</i>
 
 
----
 
;''Returns''
 
 
:(currXP, nextXP)
 
 
 
:;currXP : Number - The current XP total
 
:;currXP : Number - The current XP total
 
:;nextXP : Number - The XP total required for the next level
 
:;nextXP : Number - The XP total required for the next level
   
 
==Example==
----
 
;''Example''
 
 
local currXP, nextXP = GetPetExperience();
 
local currXP, nextXP = GetPetExperience();
  +
DEFAULT_CHAT_FRAME("Pet experience: " .. currXP .. " / " .. nextXP);
PetPaperDollFrameExpBar:SetMinMaxValues(min(0, currXP), nextXP);
 
  +
===Result===
PetPaperDollFrameExpBar:SetValue(currXP);
 
  +
Pet experience is displayed in the default chat frame.
 
----
 
;''Description''
 
 
: Returns the pet's current XP total, and the XP total required for the next level.
 
 
 
----
 
{{WoW API}}
 

Revision as of 18:45, 23 December 2006

Returns the pet's current XP total, and the XP total 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.