1. How would I create a script telling the players on a server that it's going to restart in 5 minutes with it updating every 30 seconds? Thank you.
     
  2. You are using Oxide right? If so, just install the TimedExectute plugin and edit the config to something like this:
    The quit command will restart the server when you're using Oxide
    Code:
    {
      "EnabledRealTime-Timer": true,
      "EnableTimerOnce": false,
      "EnableTimerRepeat": true,
      "RealTime-Timer": {
        "05:45:00": "adminmessage 'Restart in 15 minutes'",
        "05:55:00": "adminmessage 'Restart in 5 minutes'",
        "05:59:00": "adminmessage 'Restart in 1 minute'",
        "05:59:30": "adminmessage 'Restart in 30 seconds'",
        "05:59:50": "adminmessage 'Restart in 10 seconds'",
        "06:00:00": "quit",
     
  3. I edited the config just as written above and it's not doing anything....no warning messages....no reset. Also I'm assuming you mean editing the .json file? Yes I am using oxide.
     
  4. He pmed me... the thing that he was having problems with was your example.. you didnt send the whole config with the other timers.