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!

Cartography Fix - Make Maps for all Facets

Dreamseeker

Sorceror
I've edited the Player Crafted Maps so they work on all Facets. No more Grey indecipherable maps when using Cartography. Plotting courses with Ships should work with them (can't see why not)

All four player made map types will work as they always have on Trammel and Felucca.

- Replace Localmap.cs, Citymap.cs, Seamap.cs, Worldmap.cs and also MapItem.cs

- Edit out/Remove this part in CraftItem.cs

(Line 1206 -> 1210 approx)
Code:
else if (typeof(MapItem).IsAssignableFrom(ItemType) && from.Map != Map.Trammel && from.Map != Map.Felucca)
{
    item = new IndecipherableMap();
    from.SendLocalizedMessage(1070800); // The map you create becomes mysteriously indecipherable.
}
 

Attachments

  • SFCartography.rar
    6.5 KB · Views: 42
Top