WoW:API IsTradeSkillLinked: Difference between revisions
Jump to navigation
Jump to search
(Add 2nd return value) |
m (Move page script moved page API IsTradeSkillLinked to API IsTradeSkillLinked without leaving a redirect) |
(No difference)
|
Latest revision as of 04:46, 15 August 2023
← WoW API < IsTradeSkillLinked
Returns true if the tradeskill being viewed is from a link along with the player's name, nil otherwise.
isLink, playerName = IsTradeSkillLinked()
- Arguments
- none
- Returns
- isLink - 1 if the tradeskill shown in the UI is from a link (in chat), nil otherwise
- playerName - The name of the player the tradeskill link is for if isLink is 1, nil otherwise.
- Example
if not IsTradeSkillLinked() then -- do something with the player's tradeskills end