Running global.restart every day?Solved
How to make global.restart every day in real time 4am, also with 300 seconds notice with Timed execute plugin?
Am i doing it correctly?
https://umod.org/plugins/timed-execute

{
  "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": {
    "04:00:00": "global.restart 300 arg"
  },
  "TimerOnce": {
    "command1 'msg'": 60,
    "command2 'msg'": 120,
    "command3 arg": 180,
    "reset.timeronce": 181
  },
  "TimerRepeat": {
    "command1 arg": 300,
    "command2 'msg'": 300
  }
}​
without arg like this for example
"04:00:00": "global.restart 300",​
global.restart ????

here is how i have mine - is this wrong because mine works.

"06:59:30": "server.save",
"06:59:59": "restart 0",
In response to tomhud ():
global.restart ????

here is how i have mine - is this wrong because mine works.
global.restart and restart are the same command.
Locked automatically