WoW:API GetCoinText: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(initial documentation)
 
m (Move page script moved page API GetCoinText to API GetCoinText without leaving a redirect)
 
(No difference)

Latest revision as of 04:45, 15 August 2023

WoW API < GetCoinText

Breaks down an amount of money into gold/silver/copper, inserts separator strings, and returns the resulting string.

formattedAmount = GetCoinText(amount, "separator");

Parameters[edit]

Arguments[edit]

amount
Integer - the amount of money in copper (for example, the return value from GetMoney)
"separator"
String - a string to insert between the formatted amounts of currency, if there is more than one type

Returns[edit]

formattedAmount
String - a (presumably localized) string suitable for printing or displaying

Example[edit]

/script print(GetCoinText(12345," "))
1 Gold 23 Silver 45 Copper
/script print(GetCoinText(12345,"X"))
1 GoldX23 SilverX45 Copper