View Single Post
Old 07-04-2009, 12:10 AM   #4 (permalink)
Soteric
Forum Expert
 
Soteric's Avatar
 
Join Date: Aug 2006
Location: Russia, Rostov-on-Don
Posts: 1,658
Send a message via ICQ to Soteric
Default

Array elements should be divided with commas
Code:
public static readonly PMList OtherLocations = // Adding new list of locations to our PublicMoongate gump
            new PMList("Other Locations", new PMEntry[]
            {
                new PMEntry( new Point3D( 5210, 1161, 0 ), Map.Felucca, "Gate Room" ) // Adding a new location
		new PMEntry( new Point3D( 2366, 1268, -85 ), Map.Malas, "Doom" )
		new PMEntry( new Point3D( 1447, 1472, -23 ), Map.Ilshenar, "Twisted Weald" )
		new PMEntry( new Point3D( 581, 1643, 0 ), Map.Felucca, "Blighted Grove" )
		new PMEntry( new Point3D( 1355, 766, 1 ), Map.Tokuno, "The Citadel" )
		new PMEntry( new Point3D( 5571, 3024, 32 ), Map.Felucca, "Palace of Paroxysmus" )
		new PMEntry( new Point3D( 3791, 1099, 20 ), Map.Felucca, "Prism of Light" )
		
                // Here should be added any locations you need
            });
Same here
Code:
public static readonly PMList[] AOSListsYoung	= new PMList[] { Trammel Ilshenar, Malas };
		public static readonly PMList[] SELists			= new PMList[] { Felucca, Ilshenar, Malas, Tokuno };
		public static readonly PMList[] SEListsYoung	= new PMList[] { Trammel Ilshenar, Malas, Tokuno };
Soteric is offline   Reply With Quote