WoW API: GetCoinText
← 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");
ParametersEdit
ArgumentsEdit
- 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
ReturnsEdit
- formattedAmount
-
- String - a (presumably localized) string suitable for printing or displaying
ExampleEdit
/script print(GetCoinText(12345," ")) 1 Gold 23 Silver 45 Copper /script print(GetCoinText(12345,"X")) 1 GoldX23 SilverX45 Copper