Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
WoW
Talk
English
Views
Read
Edit
History
More
Search
Navigation
Home
Random page
Help using wiki
Editions
for WoW
for WildStar
for Solar2D
Documentation
for WoW
for WildStar
Reference
WoW
⦁ FrameXML
⦁ AddOns
⦁ API
⦁ WoW Lua
WildStar
⦁ AddOns
⦁ API
⦁ WildStar Lua
Engine
Tools
What links here
Related changes
Special pages
Page information
Site
Recent Changes
Editing
WoW:API GetTalentPrereqs
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{wowapi}} Returns the tier and column of a talent's prerequisite, and if the talent is learnable. tier, column, isLearnable = GetTalentPrereqs( tabIndex , talentIndex[, inspect] ); == Parameters == <big>'''Arguments'''</big> <!-- List each argument, together with its type --> :(tabIndex, talentIndex) :;tabIndex : Integer - Specifies which tab the talent is in. :;talentIndex : Integer - Specifies which talent to check ::: Note: The talentIndex is counted as if it where a tree, meaning that the left most talent in the top most row is number 1 followed by the one immediate to the right is number 2, if there are no more talents to the right then it continues from the left most talent on the next row. :;inspect : [[Boolean]] - If true returns the information for the inspected unit instead of the player. New with 2.3. <big>'''Returns'''</big> <!-- List each return value, together with its type --> :tier, column, isLearnable <!-- remove this line if it's just one value --> :;tier : Integer - The tier that the prerequisite talent sits on :;column : Integer - The Column that the prerequisite talent sits on :;isLearnable : Integer - Returns 1 if you have the necessary prereqisites already, nil otherwise. == Example == <!-- If it helps, include an example here, though it's not required if the usage is self-explanatory --> For a Warrior, checks the prerequisites for the talent "Flurry": local tier, column, learnable = GetTalentPrereqs(2,16) <big>'''Result'''</big> <!-- If it helps, include example results here, though they are not required. You're allowed to cheat liberally since WoW isn't a command line language. --> tier = 4 column = 3 learnable = 1 if you have 5/5 in Enrage, nil otherwise == Details == If you select a talent with no prerequisites, the whole function returns nil The original code by Blizzard shows that possibly several prerequisites could exists, in which case other triplets of row, column, learnable values would be returned. Code to handle this would look like this : local handle_prereqs = function (...) for i = 1, select("#", ...), 3 do local row, column, learnable = select(i, ...) <do something here> end end handle_prereqs(GetTalentPrereqs(tab, index))
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:Apinav
(
edit
)
Template:Editlink
(
edit
)
Template:Tocright
(
edit
)
Template:Wowapi
(
edit
)