Send RCON Command every 20 minutes? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Send RCON Command every 20 minutes? (
/showthread.php?tid=90744)
Send RCON Command every 20 minutes? -
Memoryz - 09.08.2009
How do I send an rcon command every 20 minutes?
Re: Send RCON Command every 20 minutes? -
ev0lution - 09.08.2009
Put this in OnFilterScriptInit or OnGameModeInit:
pawn Код:
SetTimer("RconCommand",1200000,1);
And put this anywhere in the script:
pawn Код:
forward RconCommand();
public RconCommand()
{
SendRconCommand("rconcmdhere");
return 1;
}
Replace "rconcmdhere" with the command you want to send.
Re: Send RCON Command every 20 minutes? -
Memoryz - 09.08.2009
Thanks man!
Your a server-saver xD