• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

SOLVED How to present value in currency?

hugokml

Member
Please, on Game Maker, I need to present on screen a budget in a currency value (eg. $999,999.00) and score value (eg. 999,999).

Please, how can I do it?
 

Xerohe

Member
You can concatenate text like this:

draw_text(x,y,"$" + string(value));

You have to put string() around any values that are in number format.
 
Top