22.03.2014, 20:27
Quote:
Some like that is definitely the best way, but what happens if it passes 12?
|
pawn Код:
stock ReturnGameTime2(seconds, &h, &m, &s)
{
h = seconds / 3600;
m = seconds / 60 % 60;
s = (seconds = seconds % 60);
}