WoW:API UnitXPMax: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
m (Move page script moved page API UnitXPMax to API UnitXPMax without leaving a redirect)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<center>'''UnitXP''' - ''Documentation by VelvetPaw''</center>
{{wowapi}}
 
Return the max XP of a "unit" - only seems to work with "player".
Return the max XP of a "unit" - only seems to work with "player".


Line 33: Line 32:


:[[API floor|floor(value)]] - Returns the floor of value.
:[[API floor|floor(value)]] - Returns the floor of value.
----
 
__NOTOC__
== Note ==
{{Template:WoW API}}
 
[[Category:API Functions|UnitXPMax]]
This probably works for Hunter pets as well, as they earn XP and level up seperately from the Hunter.
[[Category:API Unit Functions|UnitXPMax]]

Latest revision as of 04:47, 15 August 2023

WoW API < UnitXPMax

Return the max XP of a "unit" - only seems to work with "player".

XP = UnitXPMax("unit")

Parameters[edit]

Arguments[edit]

("unit")
unit
String - The UnitId to select as a target.

Returns[edit]

XP
XP
Numeric - Returns the max XP points of the "unit".

Example[edit]

XP = UnitXP("player")
XPMax = UnitXPMax("player")
DEFAULT_CHAT_FRAME:AddMessage("Your XP is currently at "..floor( XP / XPMax ).."%."),1,0,0)

Info[edit]

DEFAULT_CHAT_FRAME:AddMessage("text",r,g,b)[edit]

ScrollingMessageFrame:AddMessage("text",r,g,b,id)
Valid Frame names:
DEFAULT_CHAT_FRAME
ChatFrame1 - ChatFrame7

UnitXP("unit")[edit]

UnitXP("unit") - Returns the number of experience points the specified unit has in their current level.

floor(value)[edit]

floor(value) - Returns the floor of value.

Note[edit]

This probably works for Hunter pets as well, as they earn XP and level up seperately from the Hunter.