WoW API: GetTalentTabInfo
Jump to navigation
Jump to search
Returns the information of the talent tab (tree)
name, iconTexture, pointsSpent, background = GetTalentTabInfo( tabIndex [[,inspect] [,isPet]] );
- Arguments
- tabIndex
- Integer - Specifies which tab (tree) to identify.
- inspect
- Boolean - If true returns the information for the inspected unit instead of the player. New with 2.3.
- isPet
- Boolean - If true then the current pet's talents are examined instead of a player. New with 3.0.2.
- Returns
- name
- String - The name of that tab.
- iconTexture
- String - Path and file name of tab icon.
- pointsSpent
- Integer - Number of points put into that tab.
- background
- String - File name of background image.
- Example
local i = 1
while i <= GetNumTalentTabs() do
local numTalents = GetNumTalents(i)
DEFAULT_CHAT_FRAME:AddMessage( i .. ' ' .. GetTalentTabInfo(i) .. ' ' )
i = i+1
end
- Results
- Displays the tabIndex number for each tab followed by the name of the tab.
- Notes
Passing a true value for isPet should only happen if the player is a hunter and there is a pet active.