WoW:API GetCraftRecipeLink: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(New page: {{wowapi}} Returns the EnchantLink for a craft. link = GetCraftRecipeLink(index) == Parameters == === Arguments === :(index) ;index : Number - The index of the item in the current ...)
 
m (Move page script moved page API GetCraftRecipeLink to API GetCraftRecipeLink without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{removedapi|3.0|Crafting API was absorbed into [[World of Warcraft API#TradeSkill|Tradeskill API]].
* Equivalent function: {{api|GetTradeSkillRecipeLink}}}}
{{wowapi}}
{{wowapi}}


Returns the [[EnchantLink]] for a craft.
Gets the an 'enchantLink' for a craft.
 
local enchantLink = GetCraftRecipeLink(index)


link = GetCraftRecipeLink(index)
== Parameters ==
== Parameters ==
=== Arguments ===
=== Arguments ===
:(index)
* index (number) - The index of the item in the current active trade skill


;index : Number - The index of the item in the current active trade skill.
=== Returns ===
* {{api|enchantLink|t=t}} (string) - A special color coded link with href, which can be included in chat messages to show the reagents and the items the craft creates.


=== Returns ===
== Details ==
:link
This function works with the trade skill which is currently active and only the trade skills that use the CraftFrame, not the TradeSkillFrame. Initially there is no active trade skill. A trade skill becomes active when a trade skill window is opened, for instance.


:;link : String - An [[EnchantLink]] (color coded with href) which can be included in chat messages to show the reagents and the items the craft creates.
Note that not all trade skills will change the active trade skill for this function. At the moment only enchanting and hunter's train-pet window use CraftFrame. Use [[API GetTradeSkillRecipeLink|GetTradeSkillRecipeLink]] for the other professions.


== Details ==
== Notes ==
: This function works with the trade skill which is currently active and only the trade skills that use the CraftFrame, not the TradeSkillFrame. Initially there is no active trade skill. A trade skill becomes active when a trade skill window is opened, for instance.
* Removed in patch 3.0. Use {{api|GetTradeSkillRecipeLink}} instead.
: Note that not all trade skills will change the active trade skill for this function. At the moment only enchanting and hunter's train-pet window use CraftFrame. Use [[API GetTradeSkillRecipeLink|GetTradeSkillRecipeLink]] for the other professions.

Latest revision as of 04:45, 15 August 2023

WoW API < GetCraftRecipeLink

Gets the an 'enchantLink' for a craft.

local enchantLink = GetCraftRecipeLink(index)

Parameters[edit]

Arguments[edit]

  • index (number) - The index of the item in the current active trade skill

Returns[edit]

  • enchantLink (string) - A special color coded link with href, which can be included in chat messages to show the reagents and the items the craft creates.

Details[edit]

This function works with the trade skill which is currently active and only the trade skills that use the CraftFrame, not the TradeSkillFrame. Initially there is no active trade skill. A trade skill becomes active when a trade skill window is opened, for instance.

Note that not all trade skills will change the active trade skill for this function. At the moment only enchanting and hunter's train-pet window use CraftFrame. Use GetTradeSkillRecipeLink for the other professions.

Notes[edit]