09.08.2009, 21:54
Put this in OnFilterScriptInit or OnGameModeInit:
And put this anywhere in the script:
Replace "rconcmdhere" with the command you want to send.
pawn Код:
SetTimer("RconCommand",1200000,1);
pawn Код:
forward RconCommand();
public RconCommand()
{
SendRconCommand("rconcmdhere");
return 1;
}

