GetCurrencyInfo

From Warcraft Wiki
Jump to navigation Jump to search
GitHub Octocat.png  Townlong-Yak BAD.png  ProfIcons engineering.png  BTNTemp.png C_CurrencyInfo.GetCurrencyInfo TheWarWithin-Icon-Inline.pngDragonflight-Icon-Inline.pngCata-Logo-Small.pngWoW Icon update.png + 9.0.1
GitHub Octocat.png  Townlong-Yak BAD.png  ProfIcons engineering.png  BTNTemp.png C_CurrencyInfo.GetCurrencyInfoFromLink TheWarWithin-Icon-Inline.pngDragonflight-Icon-Inline.pngCata-Logo-Small.pngWoW Icon update.png + 9.0.1
Wowprogramming.png  BTNTemp.png GetCurrencyInfo Cata-Logo-Small.pngWoW Icon update.png + 4.0.1, - 9.0.1

Retrieve Information about a currency at index including it's amount.

name, currentAmount, texture, earnedThisWeek, weeklyMax, totalMax, isDiscovered, rarity = GetCurrencyInfo(id or "currencyLink" or "currencyString")

Arguments

One of the following three ways to specify which currency to query:

id
Integer - CurrencyID
currencyLink
String - The full currencyLink as found with GetCurrencyLink() or GetCurrencyListLink().
currencyString
String - A fragment of the currencyLink string for the item, e.g. "currency:396" for Valor Points.

Returns

name
String - the name of the currency, localized to the language
amount
Number - Current amount of the currency at index
texture
String - The file name of the currency's icon.
earnedThisWeek
Number - The amount of the currency earned this week
weeklyMax
Number - Maximum amount of currency possible to be earned this week
totalMax
Number - Total maximum currency possible to stockpile
isDiscovered
Boolean - Whether the character has ever got some of this currency
rarity
Integer - Rarity indicator for this currency

Patch changes

External links