24.03.2016, 20:42
Set up a timer ongamemode init that calls a function to start the hourly timer. You'll need to work out how many minutes are left until the hour ends, so something like (ongamemodeinit
then have that timer call another timer with the interval of 60,000 ms (1hr) and connect it to a function to give all connected players a respect point
PHP код:
new h, m, s;
gettime(h, m, s);
SetTimer("Timer_InitiateHourTimer", (60-m)*60000, 0);