Send RCON Command every 20 minutes?
#1

How do I send an rcon command every 20 minutes?
Reply
#2

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.
Reply
#3

Thanks man!

Your a server-saver xD
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)