22.07.2010, 22:37
I have this /stopwatch command but GetTickCount returns in millseconds. Anyway to change it from millseconds to seconds?
format(string, 256, "You have stopped the stopwatch on %s. The time was %i",giveplayer, GetTickCount() - stopwatchtime/1000);
format(string, 256, "You have stopped the stopwatch on %s. The time was %f",giveplayer, GetTickCount() - stopwatchtime/1000);