06.02.2013, 12:44
Set a repeatedly running timer for 1 second and increment a value every time it runs (count seconds) and have a function to convert the seconds into minutes & seconds.
minutes = floor(seconds/60)
seconds -= 60*minutes
(I don't know pawn but that's the idea)
minutes = floor(seconds/60)
seconds -= 60*minutes
(I don't know pawn but that's the idea)