Ok, so my goal is to have a countdown timer that starts on 02:00:00 (that's two minutes) and go all the way to 00:00:00.
My timer is currently on dt subtraction every tick from a global variable of 120. That's why I'm using floor(Timer/60) & ":" & Timer%60 to show it like a real number. However, instead of showing 01:05:34, it is currently showing 1:5.34874. I need to blend the timer code with two more lines/principles.
1) The zeropad, so I put zeroes and make the timer always have 6 digits (in other words, 02:00:00 instead of 2:0.
2) Make the code show the last two digits and no digit else. So basically have the 01:05:34 instead of 01:05:34238723. I thought that I had to use the round(N*x/x) to have that work. However, I need the system to interpret this as a number by itseft, as the floor(Timer/60) & ":" & Timer%60 basically has two independent numbers (because, basically, I need it to show 02:00:00 instead of 02:00
.
00.
Can you guys help me out?