Hi guys!
I'm new to Construct 2 and the forums. I discovered this great piece of software a few weeks ago, and I can't believe how awesome it is! I'll definitely upgrade to the full version by the end of this month !
Anyway, I'm trying to build a money system, and I'm stuck at the following:
What I've done so far:
* I've created a text object named "txt_cash",
* a global variable named "cash".
I'm using the "rex_systemext"-plugin, to create the decimal seperators, and this works great (for example: "1123.45" is showing as "1.123,45".), however, when the value in my global variable "cash" is, let's say, "34.50", it's showing "34,5" instead of "34,50". Same goes for round numbers... instead of showing "50,00", it's showing "50".
Right now I have: Every tick -> set text "txt_cash" to -> SysExt.ToDecimalMark(cash)
Does anyone know what I should add to the above line to fix this problem?
Any help would be greatly, greatly appreciated!