RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

World Save Intervals

Celestria

Wanderer
World Save Intervals

If you want to change your world save intervals go to
Scripts\Misc\AutoSave.cs

In line 9 you will see a code that looks like this

Code:
		private static TimeSpan m_Delay = TimeSpan.FromMinutes( 5.0 );

Change the number 5 to however long of a period you want in between saves
for example of 30 minutes in between saves

Code:
		private static TimeSpan m_Delay = TimeSpan.FromMinutes( 30.0 );
 
Top