Adding a sign to currency on stat screen

Hey, sorry if this is the wrong cathegory but I’d really like to add a currency sign to my stat screen (e.g cash: $50 instead of just cash: 50) and I have no idea how to do it. Thanks in advance for help

Well if you have a variable for the money it’s simple.

$${player_money}

It will display as $50 if player_money = 50.

4 Likes

I’m sure there are a many different ways. Here’s one: You could create a temporary variable that combines your cash stat with the currency symbol as a string, and then display that temp variable instead of the actual cash variable. Something like:

*temp cash_2 "$${cash}"
*stat_chart
    text cash_2 Cash

If you don’t mind displaying your cash value outside a stats chart, you can print it directly as @GoldenSilver has explained.

1 Like