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 GetSkillLineInfo
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}} __NOTOC__ Returns the name and other information which is associated with the specific skill or skill header in the game. skillName, isHeader, isExpanded, skillRank, numTempPoints, skillModifier, skillMaxRank, isAbandonable, stepCost, rankCost, minLevel, skillCostType, skillDescription = GetSkillLineInfo(skillIndex) == Parameters == === Arguments === :(skillIndex) :;skillIndex : Integer - The row of the skill display to request information from. === Returns === :skillName, isHeader, isExpanded, skillRank, numTempPoints, skillModifier, skillMaxRank, isAbandonable, stepCost, rankCost, minLevel, skillCostType, skillDescription :;skillName : String - The name of the skill/header :;isHeader : Flag - 1 if row is header, nil otherwise. :;isExpanded: Flag - 1 if row is expanded, nil otherwise. :;skillRank : Integer - The current rank for the current skill :;numTempPoints : Integer - Temporary points for the current skill :;skillModifier : Integer - Skill modifier value for the current skill :;skillMaxRank : Integer - The maximum rank for the current skill :;isAbandonable : Flag - 1 if skill can be unlearned, nil otherwise. :;stepCost : Flag - 1 if skill can be learned, nil otherwise. :;rankCost : Flag - 1 if skill can be trained, nil otherwise. :;minLevel : Integer - Minimum level required to learn this skill :;skillCostType : Integer - Unknown, seems to be related to primary and secondary skills :;skillDescription : String - Skill Description Text, localised == Example == for skillIndex = 1, GetNumSkillLines() do local skillName, isHeader, isExpanded, skillRank, numTempPoints, skillModifier, skillMaxRank, isAbandonable, stepCost, rankCost, minLevel, skillCostType, skillDescription = GetSkillLineInfo(skillIndex) if not isHeader then print(string.format("Skill: %s - %s", skillName, skillRank)) end end ====Result==== :Prints each skills's name and rank. Two-Handed Mace - 229 Cooking - 278 Staves - 150 Leatherworking - 300 ====Another Example==== :Lets say you only want a specific return value, and you do not want to waste a lot of variables or characters to get it. What you can do is assign all the returns values to an array, and then select the element of the array that corresponds with the return value you want. For example if you wanted only the skillRank of riding(if you have all the secondary skills) you can use the following code: /script array = {GetSkillLineInfo(12)} /script DEFAULT_CHAT_FRAME:AddMessage(array[4]) Where: *12 is the skillIndex of Riding. *4 is the index of the skillRank in the array :For more information on this method try the Lua website:[http://www.lua.org/pil/5.1.html] [[Category:World of Warcraft API]]
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
)