Ive Tried to get this to work for me but no go. all i am using is this version of serve uo repack and the most current Broadsword. i have created map 0 (aka map37 Dalantra 7168x4096 and map38 Thanimur 7168x4096) and i can not get this to jump to the new maps these maps can be found on darkshard website
Mapdef.cs settings
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, 4, "Felucia", MapRules.FeluccaRules);
RegisterMap(1, 1, 1, 7168, 4096, 0, "Trammel", MapRules.TrammelRules);
RegisterMap(2, 2, 2, 2304, 1600, 1, "Ilshenar", MapRules.TrammelRules);
RegisterMap(3, 3, 3, 2560, 2048, 1, "Malas", MapRules.TrammelRules);
RegisterMap(4, 4, 4, 1448, 1448, 1, "Tokuno", MapRules.TrammelRules);
RegisterMap(5, 5, 5, 1280, 4096, 1, "TerMur", MapRules.TrammelRules);
//Custom Maps
RegisterMap(34, 1, 1, 6144, 4096, 1, "Mining", MapRules.TrammelRules);
RegisterMap(35, 0, 0, 6144, 4096, 1, "Underworld", MapRules.FeluccaRules);
RegisterMap(36, 1, 1, 6144, 4096, 1, "Dracnia", MapRules.TrammelRules);
RegisterMap(37, 1, 1, 7168, 4096, 1, "Dalantra", MapRules.TrammelRules);
RegisterMap(38, 1, 1, 7168, 4096, 1, "Thanimur", MapRules.TrammelRules);
RegisterMap(0x7F, 0x7F, 0x7F, Map.SectorSize, Map.SectorSize, 1, "Internal", MapRules.Internal);
mapregistry.cs settings
public static void Configure()
{
AddMapDefinition(0, 0, new Point2D(7168, 4096), new Point2D(5120, 4096)); //felucca
AddMapDefinition(1, 1, new Point2D(7168, 4096), new Point2D(5120, 4096)); //trammel
AddMapDefinition(2, 2, new Point2D(2304, 1600), new Point2D(2304, 1600)); //Ilshenar
AddMapDefinition(3, 3, new Point2D(2560, 2048), new Point2D(2560, 2048)); //Malas
AddMapDefinition(4, 4, new Point2D(1448, 1448), new Point2D(1448, 1448)); //Tokuno
AddMapDefinition(5, 5, new Point2D(1280, 4096), new Point2D(1280, 4096)); //TerMur
//those are sample maps that use same original map...
//AddMapDefinition(32, 0, new Point2D(7168, 4096), new Point2D(5120, 4096));
//AddMapDefinition(33, 0, new Point2D(7168, 4096), new Point2D(5120, 4096));
//AddMapDefinition(34, 1, new Point2D(7168, 4096), new Point2D(5120, 4096));
AddMapDefinition(34, 1, new Point2D(6144, 4096), new Point2D(6144, 4096));
AddMapDefinition(35, 0, new Point2D(6144, 4096), new Point2D(6144, 4096));
AddMapDefinition(36, 1, new Point2D(6144, 4096), new Point2D(6144, 4096));
AddMapDefinition(37, 1, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Dalantra
AddMapDefinition(38, 1, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Thanimur
EventSink.ServerList += new ServerListEventHandler(EventSink_OnServerList);
what am i doing wrong here;
opps forgot to say that it had Ultima Live installed