19.07.2015, 20:57
Just made this real quick incase you do need it, just replace second format with this:
PHP код:
new seconds = SecondCount, minutes;
while(seconds > 59)
{
seconds -= 60;
minutes++;
}
format(string, sizeof(string), "%02d:%02d remaining!",minutes,seconds);