UnitXP

From Warcraft Wiki
Jump to navigation Jump to search

Returns the current XP of the unit; only works on the player.

xp = UnitXP(unit)

Arguments

unit
string : UnitToken

Returns

xp
number - Returns the current XP points of the unit.

Details

Related Events PLAYER_XP_UPDATE
Related API UnitXPMax

Example

local xp = UnitXP("player")
local nextXP = UnitXPMax("player")
print(string.format("Your XP is currently at %.1f%%", xp / nextXP * 100))