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.
Solved Setting up restart notifications?
Discussion in 'Hurtworld Discussion' started by Sans 2, Jan 5, 2016.
-
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",
-
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.
-