Wowpedia

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

READ MORE

Wowpedia
Advertisement

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

xp = UnitXP(unit)

Arguments[]

unit
string : UnitId

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))
Advertisement