WoW:API GetCraftReagentItemLink: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
m (Move page script moved page API GetCraftReagentItemLink to API GetCraftReagentItemLink without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This command returns a string, which is an item link.
{{removedapi|3.0|Crafting API was absorbed into [[World of Warcraft API#TradeSkill Functions|Tradeskill API]].}}
{{wowapi}} __NOTOC__
This command returns a required reagent (as an [[itemLink]]) for a specific craftable item from the currently visible tradeskill window.


  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 : Numeric - starting at 1 going down to X number of possible crafts, where 1 is the top-most listed craft.
== Returns ==
:;n : Numeric - starting at 1 to X, where X is the total number of reagents said craft requires.
;reagentLink : String - [[itemLink]] for the requested reagent.  
 
=== Returns ===
 
:;reagentLink : String. Item link.  


== Details ==
== Details ==


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


----
[[Category:World of Warcraft API]]
__NOTOC__
{{WoW API}}

Latest revision as of 04:45, 15 August 2023

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[edit]

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[edit]

reagentLink
String - itemLink for the requested reagent.

Details[edit]

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