Automated updating of API pages at this location, to reflect patch changes, has ceased from 10.1.7 onwards. |
Returns the amount of money the player character owns.
money = GetMoney()
Returns[]
- money
- number - The amount of money the player's character has, in copper.
Details[]
Related Events | PLAYER_MONEY |
Available after | PLAYER_ENTERING_WORLD (on login) |
Example[]
GetMoney()
local money = GetMoney()
local gold = floor(money / 1e4)
local silver = floor(money / 100 % 100)
local copper = money % 100
print(("You have %dg %ds %dc"):format(gold, silver, copper))
-- You have 10851g 62s 40c
GetCoinText(amount [, separator])
print(GetCoinText(GetMoney())) -- "10851 Gold, 62 Silver, 40 Copper"
print(GetCoinText(12345678, " ")) -- "1234 Gold 23 Silver 45 Copper"
print(GetCoinText(12345678, "X")) -- "1234 GoldX23 SilverX45 Copper"
GetMoneyString(amount [, separateThousands])
print(GetMoneyString(12345678))
print(GetMoneyString(12345678, true))
1234 56 78 1,234 56 78
GetCoinTextureString(amount [, fontHeight])
print(GetCoinTextureString(1234578))
print(GetCoinTextureString(1234578, 24))
1234 56 78
1234 56 78