21.07.2015, 11:29
The timer should increase or decrease?
I think it should increase so try this:
I think it should increase so try this:
Код:
stock ConvertTime(time) { new minutes = (time % (1000*60*60)) / (1000*60); new seconds = ((time % (1000*60*60)) % (1000*60)) / 1000; new ms = time - (minutes*60*1000) - (seconds*1000); new str[128]; format(str,sizeof(str),"%02d:%02d.%03d",minutes,seconds,ms); return str; }