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!

Adding moongates in Ter Mur

Got to Scripts\Items\Misc\PublicMoongate.cs

Code:
Line 119:  count += MoonGen(PMList.TerMur);
Line 290:    public static readonly PMList TerMur =
            new PMList(1112178, 1113604, Map.TerMur, new PMEntry[]
                {
                    new PMEntry( new Point3D(  851, 3525, -38 ), 1115548 ), // Royal City
                    new PMEntry( new Point3D(  925, 3989, -36 ), 1112572 ) // Holy City
                });
Line 303:    public static readonly PMList[] SELists            = new PMList[] { Trammel, Felucca, Ilshenar, Malas, Tokuno, TerMur };
 
Top