16.09.2015, 02:07
pawn Код:
new Microsegundos = GetTickCount();
new Horas = Microsegundos / (1000*60*60);
new Minutos = (Microsegundos % (1000*60*60)) / (1000*60);
new Segundos = ((Microsegundos % (1000*60*60)) % (1000*60)) / 1000;
new Microsegundos = GetTickCount();
new Horas = Microsegundos / (1000*60*60);
new Minutos = (Microsegundos % (1000*60*60)) / (1000*60);
new Segundos = ((Microsegundos % (1000*60*60)) % (1000*60)) / 1000;