Hello, looking for some info, based on UO.com Paragon chest, specifically Miasma should be dropping level 4 treasure maps, however it appears that the initial +1 level to maps for paragon chests is still in effect, is there a way to fix this easily or is it a core mod?

Thanks,
Josh
 
By default the Miasma can't be a paragon but it is configured to give Level 5 maps. Changing that is as easy as changing the 5 to a 4 in Miasma.cs

Code:
        public override bool CanBeParagon => false;

        public override void OnDeath(Container c)
        {
            base.OnDeath(c);

            if (Paragon.ChestChance > Utility.RandomDouble())
                c.DropItem(new ParagonChest(Name, 5));
Post automatically merged:

And yes, it is strange that CanBeParagon is false yet two lines later it's giving the chance for a paragon chest drop!
 
Last edited:
Thanks Falkor! Miasma has always had the chance for Paragon chest drops on production, and continues to do so in ServUO, just doesn't seem to tak einto effect the changes for the most recent treasur emap publish is all..

Also not sure how I eneded up posting this into XMLSpawner support forum, oh well! Thanks for the info on how / where to change that.
 
Back