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!

Ultima Live Map Streamer and Editor 0.97 - help

suttenjohn

Sorceror
I have 5 maps I want to add to the existing map set with 7.0.7.1 SA. This segment is in MapRegistry.cs under the Core directory.

Code:
AddMapDefinition(33, 33, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Bruatur
AddMapDefinition(34, 34, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Westvale
AddMapDefinition(35, 35, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Deermore
AddMapDefinition(36, 36, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Greywell
AddMapDefinition(37, 37, new Point2D(7168, 4096), new Point2D(5120, 4096)); //Linport

This is the update I have in MapDefinition.cs

Code:
RegisterMap(33, 6, 6, 7168, 4096, 0, "Bruatur",        MapRules.FeluccaRules );
RegisterMap(34, 7, 7, 7168, 4096, 0, "Westvale",        MapRules.TrammelRules );
RegisterMap(35, 8, 8, 7168, 4096, 0, "Deermore",        MapRules.TrammelRules );
RegisterMap(36, 9, 9, 7168, 4096, 0, "Greywell",        MapRules.TrammelRules );
RegisterMap(37, 10, 10, 7168, 4096, 0, "Linport",      MapRules.TrammelRules );

No matter where I go it looks the same and I have verified they are in fact different maps.
 
Top