04.05.2010, 09:57
Код:
forward TwelveHourRestart();
forward RestartWarning();
SetTimer("RestartWarning", 1000*60*60*12 - 300000, 0);
SetTimer("TwelveHourRestart", 1000*60*60*12, 0);
public RestartWarning()
{
SendClientMessageToAll( COLOR_YOU_ADD, "BLAH BLAH, SERVER WILL RESTART IN 5 MINUTES BLAH BLAH");
return 1;
}
public TwelveHourRestart()
{
SendRconCommand("gmx");
return 1;
}

