Using in game timeSolved
Is their a way to referance the in game time. For example, at 8am in game time, it prints to chat "good morning".
Maybe look at Timed Execute or Timed Events? Might have something in there that could help you.
https://umod.org/plugins/timed-execute


{
"EnableInGameTime-Timer": true,
"EnableRealTime-Timer": false,
"EnableTimerOnce": false,
"EnableTimerRepeat": false,
"InGameTime-Timer": {
"08:00": "say Server good morning"
},
"RealTime-Timer": {
"16:00:00": "command1 arg",
"16:30:00": "command2 arg",
"17:00:00": "command3 arg",
"18:00:00": "command4 arg"
},
You could use OnSunrise event in TOD_Time or OnMinute / OnHour events there.
Thanks for the help guys.
Locked automatically