WoW:API GetCraftReagentItemLink: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (→‎Arguments: spelling corrections)
(removedapi)
Line 1: Line 1:
{{removedapi|3.0|Crafting API was absorbed into [[World of Warcraft API#TradeSkill Functions|Tradeskill API]].}}
{{wowapi}} __NOTOC__
{{wowapi}} __NOTOC__
This command returns a required reagent (as an [[itemLink]]) for a specific craftable item from the currently visible tradeskill window.
This command returns a required reagent (as an [[itemLink]]) for a specific craftable item from the currently visible tradeskill window.
Line 4: Line 5:
  reagentLink = GetCraftReagentItemLink(index, n)
  reagentLink = GetCraftReagentItemLink(index, n)


== Parameters ==
== Arguments ==
=== Arguments ===
;index : Numeric - index of the requested craft recipe, where 1 is the top-most listed recipe.
;n : Numeric - index of the Nth reagent for the recipe, where 1 is the first reagent.


:(index, n)
== Returns ==
 
;reagentLink : String - [[itemLink]] for the requested reagent.  
:;index : Numeric - index of the requested craft recipe, where 1 is the top-most listed recipe.
:;n : Numeric - index of the Nth reagent for the recipe, where 1 is the first reagent.
 
=== Returns ===
 
:;reagentLink : String - [[itemLink]] for the requested reagent.  


== Details ==
== Details ==

Revision as of 13:19, 28 May 2009

WoW API < GetCraftReagentItemLink

This command returns a required reagent (as an itemLink) for a specific craftable item from the currently visible tradeskill window.

reagentLink = GetCraftReagentItemLink(index, n)

Arguments

index
Numeric - index of the requested craft recipe, where 1 is the top-most listed recipe.
n
Numeric - index of the Nth reagent for the recipe, where 1 is the first reagent.

Returns

reagentLink
String - itemLink for the requested reagent.

Details

  • If you specify an invalid index, nil is returned.
  • If there is no visible tradeskill window, nil is returned.