|
||
|
|||||||
| Server Support on Windows Get (and give) support on general questions related to the RunUO server itself. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Newbie
|
how do freeze statics in here wat do i change?? i want it in my FreezeFiles Folder...
using System; using System.IO; using Microsoft.Win32; using Server; namespace Server.Misc { public class DataPath { /* If you have not installed Ultima Online, * or wish the server to use a seperate set of datafiles, * change the 'CustomPath' value, example: * * private const string CustomPath = @"C:\Program Files\Ultima Online"; */ private static string CustomPath = FreezeFiles; /* The following is a list of files which a required for proper execution: * * Multi.idx * Multi.mul * VerData.mul * TileData.mul * Map*.mul * StaIdx*.mul * Statics*.mul * MapDif*.mul * MapDifL*.mul * StaDif*.mul * StaDifL*.mul * StaDifI*.mul */ public static void Configure() { string pathReg = GetExePath( "Ultima Online" ); string pathTD = GetExePath( "Ultima Online Third Dawn" ); if ( CustomPath != null ) Core.DataDirectories.Add( CustomPath ); if ( pathReg != null ) Core.DataDirectories.Add( pathReg ); if ( pathTD != null ) Core.DataDirectories.Add( pathTD ); if ( Core.DataDirectories.Count == 0 ) { Console.WriteLine( "Enter the Ultima Online directory:" ); Console.Write( "> " ); Core.DataDirectories.Add( Console.ReadLine() ); } } private static string GetExePath( string subName ) { try { using ( RegistryKey key = Registry.LocalMachine.OpenSubKey( String.Format( @"SOFTWARE\Origin Worlds Online\{0}\1.0", subName ) ) ) { if ( key == null ) return null; string v = key.GetValue( "ExePath" ) as string; if ( v == null || v.Length <= 0 ) return null; if ( !File.Exists( v ) ) return null; v = Path.GetDirectoryName( v ); if ( v == null ) return null; return v; } } catch { return null; } } } } |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|