WoW:API GetTradeSkillListLink: Difference between revisions
Jump to navigation
Jump to search
m (Move page script moved page API GetTradeSkillListLink to API GetTradeSkillListLink without leaving a redirect) |
|||
(One intermediate revision by one other user not shown) | |||
Line 4: | Line 4: | ||
Retrieves the [[TradeSkillLink]] to the currently open tradeskill. | Retrieves the [[TradeSkillLink]] to the currently open tradeskill. | ||
link = GetTradeSkillListLink() | [[TradeSkillLink | link]] = GetTradeSkillListLink() | ||
== Arguments == | == Arguments == | ||
Line 10: | Line 10: | ||
== Returns == | == Returns == | ||
; [[TradeSkillLink | link]] : If tradeskill is linkable. | |||
; nil : If tradeskill is not linkable (runeforging) or if no tradeskill is open. | |||
== Example == | == Example == | ||
Line 23: | Line 22: | ||
==== Result ==== | ==== Result ==== | ||
:Displays a link to the currently open tradeskill in the chat window, unless there is none available. | :Displays a [[TradeSkillLink | link]] to the currently open tradeskill in the chat window, unless there is none available. | ||
== Details == | == Details == | ||
*Added in 3.0.1 | *Added in 3.0.1 | ||
*See also [[API GetTradeSkillInfo|GetTradeSkillInfo()]], [[API GetSpellLink|GetSpellLink()]] | *See also [[API GetTradeSkillInfo|GetTradeSkillInfo()]], [[API GetSpellLink|GetSpellLink()]], [[TradeSkillLink]] |
Latest revision as of 04:46, 15 August 2023
← WoW API < GetTradeSkillListLink
Synopsis[edit]
Retrieves the TradeSkillLink to the currently open tradeskill.
link = GetTradeSkillListLink()
Arguments[edit]
- None
Returns[edit]
- link
- If tradeskill is linkable.
- nil
- If tradeskill is not linkable (runeforging) or if no tradeskill is open.
Example[edit]
local link = GetTradeSkillListLink() if link then print(link) else print("Linking is not available for this tradeskill!") end
Result[edit]
- Displays a link to the currently open tradeskill in the chat window, unless there is none available.
Details[edit]
- Added in 3.0.1
- See also GetTradeSkillInfo(), GetSpellLink(), TradeSkillLink