22.09.2012, 17:51
How to add milliseconds in my TimeConvert?
pawn Код:
TimeConvert(seconds) {
new
Str[256];
new minutes = floatround(seconds/60);
seconds -= minutes*60;
format(Str, sizeof(Str), "%d:%02d", minutes, seconds);
return Str;
}