Go to ShardTime.cs and change this

Code:
			e.Mobile.SendMessage( DateTime.UtcNow.ToString() );

to this

Code:
			e.Mobile.SendMessage( DateTime.Now.ToString() );
Thank you。
As you said, the game time display correctly, however, the server console or the time is not right,how to do?

T2.png
 
if u want change all DateTime.UtcNow with DateTime.UtcNow, open all your script and server file with Notepad++ and replace the string DateTime.UtcNow with DateTime.Now. Recompile and Restart and all Look Better
 
change the code DateTime.UtcNow to DateTime.Now on script ...ServUO\Scripts\Misc\Timestamp.cs The code is 2 times in the system ...ServUO\Scripts\Misc\Timestamp.cs and on ...ServUO\Scripts\Commands\TimeStamp.cs
 
Back