ServUO Version
Publish 57
Ultima Expansion
Endless Journey
I do not remember how to change the server time in the scripts and it is off by a hour :( Any help will be great :)
 
Command "Time" shows the date in UTC time, so it can look different between your local time.
You could change this in Scripts\Commands\ShardTime.cs
from
You could change e.Mobile.SendMessage(DateTime.UtcNow.ToString());
to
e.Mobile.SendMessage(DateTime.Now.ToString());
But all server configuration will continue using UTC time to avoid problems with local time and seasonal clock change
 
Back