02.05.2010, 20:14
pawn Код:
new
hours,
minutes,
seconds,
string[6];
gettime(hours, minutes, seconds);
hours = hours - 2;
if(hours < 0) hours = hours + 24;
format(stirng, sizeof(string), "%02d:%02d", hours, minutes);
TextDrawSetString(Clock, string);