28.08.2012, 04:25
I'm using a countdown with a textdraw and when it goes below 10 seconds it show up as Ex: 1 minute and 5 seconds is 1:5 and I would like to know how to make it show up as 1:05.
format(string, sizeof(string), "%d:%02d", vMinutes, vSeconds);
//vMinutes is your variable with minutes
//vSeconds is your variable with seconds
//string is your formatted string to show