Time in servuo is very ingrained to use UTC as it never changes. Changing it to another timezone would require hundreds of edits.

What problem are you having that you need to change it?
 
I am not sure where the time is got for that but if you find it you can change datetime.utcnow to datetime.now and it will use your computers current time.
 
I am not sure where the time is got for that but if you find it you can change datetime.utcnow to datetime.now and it will use your computers current time.
Well, I just don't know where to modify, modified to a format you can work correctly? HA HA HA
 
Did you find this information on the link which Kilra Yan posted? :)
***If you only want to display the local time on [time, just find the script (Scripts/Commands/ShardTime.cs) and change from DateTime.UtcNow to DateTime.Now
 
Console.WriteLine("China: {0}",
TimeZoneInfo.ConvertTimeBySystemTimeZoneId(DateTime.Now, TimeZoneInfo.Local.Id, "China Standard Time"));
 
Back