BRAX4578 submitted a new resource:

Adding x/y coords to SOS - Adding x/y coords to SOS

I never could understand the longitude/attitude ;-) stuff so I thought, why not add the x/y coords to the SOS map like I did with the treasure maps?

Here's how one does it:

In SOS.cs:

C#:
private class MessageGump : Gump
        {
            public MessageGump(MessageEntry entry, Map map, Point3D loc)
                : base(150, 50)
            {
                int xLong = 0, yLat = 0;
                int xMins = 0, yMins = 0;
                bool xEast = false, ySouth = false...

Read more about this resource...
 
Back