Can't get real time timers to workNot An Issue
Im trying to use the real time timer to give notice before the server restarts but it doesnt say anything.

I tried all different times to make sure it works but nothing helps. Im sure the timezone is correct because im using the same timezone for my restarts

"RealTime-Timer": {
"06:10:00": "say test timer 60",
"08:17:00": "say test timer 45",
"17:00:00": "say test timer 30",
"18:00:00": "say test timer 15"
},
How it is handled by the plugin for InGame-Timer:
The plugin matches using this pattern: : "h:mm tt"
Ex. 11pm would be "11:00 PM"

RealTime-Timer is 00:00:00

It's 24-hour format and the plugin expects the pattern: HH:mm:ss

HH = 24 hour format in C#
Ex. 11pm would be "23:00:00"

So the formatting isn't consistent at the moment...
Locked automatically