ServUO Version
Publish 57
Ultima Expansion
Endless Journey
So I'm trying to find a way to completely remove the level system from certain mobs, I know there is a NoLevel section in the configuration but all that does is remove the level option from the context menu so you can't adjust the stats or mate but the creatures do still have levels and will still gain exp and level up. Has anyone done this before or maybe know where to look for a solution?
 
For anyone looking for this answer in the future I think I figured it out, if you add them to this list in PerLeveling.cs it seems to not grant any experience to "level up" the levels are still attached to the mobile but it can't actually level as it doesn't gain exp.

C#:
            if ( attacker is BaseBioCreature || attacker is BioCreature || attacker is BioMount || ADD MORE HERE )
            {
            }
            else if ( defender is BaseCreature )
 
If you Add all creatures you do not wish to level / breed in FSATSSettings.cs you will not have to edit any other files. It has a list of no level creatures in it.
 
Back