using System; using Server; namespace Server.Misc { public class MapDefinitions { public static void Configure() { /* Here we configure all maps. Some notes: * * 1) The first 32 maps are reserved for core use. * 2) Map 0x7F is reserved for core use. * 3) Map 0xFF is reserved for core use. * 4) Changing or removing any predefined maps may cause server instability. */ RegisterMap( 0, 0, 0, 7168, 4096, 1, "Britannia", MapRules.DangerRules ); RegisterMap( 1, 1, 1, 7168, 4096, 1, "Underworld", MapRules.DangerRules ); RegisterMap( 2, 2, 2, 2304, 1600, 1, "Darkness", MapRules.DangerRules ); RegisterMap( 3, 3, 3, 2560, 2048, 1, "Ocean", MapRules.DangerRules ); RegisterMap( 4, 4, 4, 1448, 1448, 1, "Grassland", MapRules.DangerRules ); RegisterMap( 0x7F, 0x7F, 0x7F, Map.SectorSize, Map.SectorSize, 1, "Internal", MapRules.Internal ); /* Example of registering a custom map: * RegisterMap( 32, 0, 0, 6144, 4096, 3, "Iceland", MapRules.DangerRules ); * * Defined: * RegisterMap( , , , , , , , ); * - : An unreserved unique index for this map * - : An identification number used in client communications. For any visible maps, this value must be from 0-3 * - : A file identification number. For any visible maps, this value must be 0, 2, 3, or 4 * - , : Size of the map (in tiles) * - : Reference name for the map, used in props gump, get/set commands, region loading, etc * - : Rules and restrictions associated with the map. See documentation for details */ TileMatrixPatch.Enabled = true; // OSI Client Patch 6.0.0.0 MultiComponentList.PostHSFormat = false; // OSI Client Patch 7.0.9.0 } public static void RegisterMap( int mapIndex, int mapID, int fileIndex, int width, int height, int season, string name, MapRules rules ) { Map newMap = new Map( mapID, mapIndex, fileIndex, width, height, season, name, rules ); Map.Maps[mapIndex] = newMap; Map.AllMaps.Add( newMap ); } } }