new ReturnTime[10],minutes,seconds; minutes = floatround(ticks/60000,floatround_round); ticks = ticks - (60000 * minutes); seconds = floatround(ticks/1000); ticks = ticks - (1000 * seconds); format(ReturnTime,sizeof(ReturnTime),"%2d:%2d.%2d",minutes,seconds,ticks); return ReturnTime;
new ReturnTime[10],minutes,seconds;
minutes = (ticks / 60000);
seconds = (ticks / 1000) % 60;
ticks = ticks % 1000;
format(ReturnTime,sizeof(ReturnTime),"%02d:%02d.%03d",minutes,seconds,ticks);
return ReturnTime;
pawn Код:
|
Keep in mind that "ticks" is supposed to be in milliseconds for it to work well.
|
[21:33:59] GetTickCount - 60928 [21:33:59] tickcount - 1120 [21:33:59] GetTickCount - 61131 [21:33:59] tickcount - 1120 [21:33:59] GetTickCount - 61334 [21:33:59] tickcount - 1120 [21:33:59] GetTickCount - 61538 [21:33:59] tickcount - 1120 [21:34:00] GetTickCount - 61742 [21:34:00] tickcount - 1130 [21:34:00] GetTickCount - 61946 [21:34:00] tickcount - 1130 [21:34:00] GetTickCount - 62149 [21:34:00] tickcount - 1130 [21:34:00] GetTickCount - 62352 [21:34:00] tickcount - 1130 [21:34:00] GetTickCount - 62556 [21:34:00] tickcount - 1130 [21:34:01] GetTickCount - 62760 [21:34:01] tickcount - 1140 [21:34:01] GetTickCount - 62964 [21:34:01] tickcount - 1140 [21:34:01] GetTickCount - 63167 [21:34:01] tickcount - 1140 [21:34:01] GetTickCount - 63371 [21:34:01] tickcount - 1140 [21:34:01] GetTickCount - 63574 [21:34:01] tickcount - 1140 [21:34:02] GetTickCount - 63779 [21:34:02] tickcount - 1150 [21:34:02] GetTickCount - 63984 [21:34:02] tickcount - 1150 [21:34:02] GetTickCount - 64187 [21:34:02] tickcount - 1150 [21:34:02] GetTickCount - 64390 [21:34:02] tickcount - 1150 [21:34:02] GetTickCount - 64594 [21:34:02] tickcount - 1150 [21:34:03] GetTickCount - 64800 [21:34:03] tickcount - 1150 [21:34:03] GetTickCount - 65004 [21:34:03] tickcount - 1150 [21:34:03] GetTickCount - 65207 [21:34:03] tickcount - 1160 [21:34:03] GetTickCount - 65411 [21:34:03] tickcount - 1160 [21:34:03] GetTickCount - 65614 [21:34:03] tickcount - 1160 [21:34:04] GetTickCount - 65819 [21:34:04] tickcount - 1170 [21:34:04] GetTickCount - 66022 [21:34:04] tickcount - 1170 [21:34:04] GetTickCount - 66225 [21:34:04] tickcount - 1170