16.10.2013, 03:30
You can get hours with this function..
pawn Код:
stock CountDown(hours, countdown)
{
new count = countdown - gettime();
while(count > 3600)
{
hours ++;
count = count - 3600;
}
return true;
}