WoW API: UnitCharacterPoints

From AddOn Studio
Jump to navigation Jump to search

WoW API < UnitCharacterPoints

Returns the number of unspent talent points of the specified unit and the number of learned professions.

  local unspentTalentPoints, learnedProfessions = UnitCharacterPoints("player")

Arguments
(unitId)
arg1
The unit to query ("player" -- "target", and the like, does not work and always returns 0)

Returns
Unspent Talent points viewable by the player and the number of currently learned professions.


unspentTalentPoints
Number - The quantity of unspent talent points the unit has available.
learnedProfessions
Number - The number of professions the unit already knows.



Example
DEFAULT_CHAT_FRAME:AddMessage( "You have " .. UnitCharacterPoints("player") .. " unspent Talent Points.")
Result

Prints the how many talent points the player has unspent.

You have 0 unspent Talent Points.

Description
Returns unspent talent points a player has or always 0 if an invalid unit type is specified.