WoW API: GetTradeSkillListLink

Revision as of 07:40, 23 September 2008 by WoWWiki>Adys (New page: {{wowapi}} == Synopsis == Retrieves the link to the currently open tradeskill. link = GetTradeSkillListLink() == Arguments == :;None == Returns == :link or nil :;link : String - The ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < GetTradeSkillListLink

Synopsis

Retrieves the link to the currently open tradeskill.

link = GetTradeSkillListLink()

Arguments

None

Returns

link or nil
link
String - The link for the currently open tradeskill. Will return nil if there is no tradeskill open, or if the currently open tradeskill linking is disabled (Poisons, Runeforging, Mining, ...)

Example

local link = GetTradeSkillListLink()
if link then
	print(link)
else
	print("Linking is not available for this tradeskill!")
end

Result

Displays a link to the currently open tradeskill in the chat window, unless there is none available.

Details