Bug in cyberscript\mod\modules\scripting.lua (function refreshModVariable):
setVariable("game_time","day",GetSingleton('GameTime'):Days(gameTime))
setVariable("game_time","hour",GetSingleton('GameTime'):Hours(gameTime))
setVariable("game_time","min",GetSingleton('GameTime'):Minutes(gameTime))
setVariable("game_time","sec",GetSingleton('GameTime'):Seconds(gameTime))
Needs to be changed to:
setVariable("game_time","day", currentTime.day)
setVariable("game_time","hour", currentTime.hour)
setVariable("game_time","min", currentTime.min)
setVariable("game_time","sec", currentTime.sec)