Need some help with Timed Execute
Hi,

I am trying to use this for only restarting the server once every 24 hours.  Can someone construst the code/config file for me?  Yes im a noob at this and want to make sure im doing this right.  Any help is appreciated! :)
Why not use the Smooth Restarter plugin?
Would I need a script along with smooth restarter?  I was trying to avoid having something running seperatly.
In response to Wulf ():
Why not use the Smooth Restarter plugin?
Would I need a script along with smooth restarter?  I was trying to avoid having something running seperatly.
In response to cmusso ():
Would I need a script along with smooth restarter?  I was trying to avoid having something running s...
You mean what handles the actual startup of the server? Yes, you'd need that with any plugin, the plugins can't actually start/restart the server, only shutdown.
In response to Wulf ():
You mean what handles the actual startup of the server? Yes, you'd need that with any plugin, the pl...
Oh, Yea, I have my server start script loop so when u say to shut it down it will restart it anyway.
if u want to use this plugin here is a example, just change the time how u need it
{
  "EnableInGameTime-Timer": false,
  "EnableRealTime-Timer": true,
  "EnableTimerOnce": false,
  "EnableTimerRepeat": false,

  "InGameTime-Timer": {

  },
  "RealTime-Timer": {

    "11:45:00": "say 'Server Restart in 15 MIN'",
    "11:50:00": "say 'Server Restart in 10 MIN'",
    "11:55:00": "say 'Server Restart in 5 MIN'",
    "11:59:00": "say 'Server Restart in 1 MIN'",
    "11:59:05": "server.save",
    "11:59:45": "global.restart 15"

  },
  "TimerOnce": {

  },
  "TimerRepeat": {

  }
}​
In response to dIMjIM ():
if u want to use this plugin here is a example, just change the time how u need it
{ "Enable...
Thanks, will this be automatic to happen every day to repeat the same thing?
If you're still using Rust Server Manager check the Auto Restart checkbox before you start the server. This will automatically restart your server once timed execute or what ever restarts your server.

Merged post

This will automatically restart your server at 3am everyday in the morning.

{
  "EnableInGameTime-Timer": false,
  "EnableRealTime-Timer": true,
  "EnableTimerOnce": false,
  "EnableTimerRepeat": false,
  "InGameTime-Timer": {
    "01:00": "weather rain",
    "12:00": "command 1",
    "15:00": "command 2"
  },
  "RealTime-Timer": {
    "03:00:00": "restart"
  },
  "TimerOnce": {
    "command1 'msg'": 60,
    "command2 'msg'": 120,
    "command3 arg": 180,
    "reset.timeronce": 181
  },
  "TimerRepeat": {
    "supply.call": 10,
  }
}
In response to cmusso ():
Thanks, will this be automatic to happen every day to repeat the same thing?
yes, every day at the same time, and dont forget to change the time how u need it ^^
Thanks everyone