Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

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


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"


print(GetMoneyString(12345678))
print(GetMoneyString(12345678, true))
1234g 56s 78c
1,234g 56s 78c


print(GetCoinTextureString(1234578))
print(GetCoinTextureString(1234578, 24))
1234g 56s 78c
1234Gold 56Silver 78Copper 
Advertisement