WoW:API GetMerchantItemCostInfo: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(marks of honor no longer the "typical" case these days)
m (Move page script moved page API GetMerchantItemCostInfo to API GetMerchantItemCostInfo without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
  honorPoints, arenaPoints, itemCount = GetMerchantItemCostInfo(index);
  itemCount = GetMerchantItemCostInfo(index);


== Parameters ==
== Parameters ==
Line 12: Line 12:
<!-- List each return value, together with its type -->
<!-- List each return value, together with its type -->


:;honorPoints: Number - The number of honor points required
:;arenaPoints: Number - The number of arena points required
:;itemCount: Number - The count of item types ([[Mark of Honor|Marks of Honor]], emblems, badges, tokens, etc) required
:;itemCount: Number - The count of item types ([[Mark of Honor|Marks of Honor]], emblems, badges, tokens, etc) required


==Details==
==Details==

Latest revision as of 04:46, 15 August 2023

WoW API < GetMerchantItemCostInfo

itemCount = GetMerchantItemCostInfo(index);

Parameters[edit]

Arguments

index
Number - The index of the item in the merchant's inventory

Returns

itemCount
Number - The count of item types (Marks of Honor, emblems, badges, tokens, etc) required


Details[edit]

The itemCount is the number of different types of items required, not how many of those types. For example, the Scout's Tabard which requires 3 Arathi Basin Marks of Honor and 3 Warsong Gulch Marks of Honor would return a 2 for the item count. To find out how many of each item is required, use the GetMerchantItemCostItem function.


Template:AlsoSee