Override entity xp and level
You can override level and XP for specific NPCs (e.g. a mod’s boss or custom mob) so they don’t use the default zone/instance range. Use this when a mod adds entities that should be harder, give more XP, or ignore level scaling.Two places to override
| Where | Config file | Use when |
|---|---|---|
| Open world (zones) | ZoneLevelConfig.json → EntityOverrides | The mob appears in the normal world (zones/biomes). |
| Instances / dungeons | InstanceLevelConfig.json → EntityOverrides inside each instance | The mob appears only inside a dungeon/instance. |
- ZoneLevelConfig overrides apply everywhere in the open world for that entity.
- InstanceLevelConfig overrides apply only inside that instance and take precedence over ZoneLevelConfig for mobs in that instance.
1. Find the entity id
You need the entity type id (e.g.Bear_Grizzly, MyMod_Boss_Phase2). Options:
- Mod documentation — Many mods list their NPC/entity ids.
- Plugin logs — With
Debug: trueinRPGLevelingConfig.json, the plugin may log entity ids when mobs spawn or when XP is awarded; check the server log for the id. - In-game — Some mods or dev tools show entity type on hover or in a debug panel.
- Trial — If the mod follows Hytale naming, ids are often
ModName_EntityName(e.g.Yungs_Skeleton_King). You can add an override with your guess and see if level/XP change for that mob.
2. Override in the open world (ZoneLevelConfig)
File:mods/Zuxaw_RPGLeveling/ZoneLevelConfig.json
Add or extend the top-level EntityOverrides array:
| Field | Description |
|---|---|
EntityId | The entity type id from the mod (e.g. SomeMod_Boss_Dragon). |
Level | Fixed level for this entity (used for damage/HP scaling, gap penalties, and XP formula if you don’t set XP). Can be above the zone max (e.g. 100, 150). |
DisableLevelScaling | true = this entity ignores level-based damage/HP and gap bonuses; XP uses HP-based formula only. false = normal level scaling using the overridden level. |
XP | Optional. If set, killing this entity always gives this base XP (still multiplied by RateExp in main config). If omitted, XP is calculated from its level and level difference. |
CoolMod_Ancient_Golem. You want it always level 90 and to give 3000 XP per kill:
3. Override inside a dungeon (InstanceLevelConfig)
File:mods/Zuxaw_RPGLeveling/InstanceLevelConfig.json
For mobs that only appear inside an instance (e.g. a dungeon boss), add overrides in that instance’s EntityOverrides:
EntityId, Level, DisableLevelScaling, XP. These apply only when the player/mob is in that instance; they override ZoneLevelConfig for that instance.
See Dungeon mod setup for a full Skeleton Dungeon example.
4. Summary
| Goal | Config | Where |
|---|---|---|
| Override a mod’s mob in the open world | ZoneLevelConfig.json → EntityOverrides | Top-level array |
| Override a mod’s mob only in a dungeon | InstanceLevelConfig.json → Instances → that instance → EntityOverrides | Per-instance |
| Boss with fixed level + fixed XP | Either | Set Level and XP; optional DisableLevelScaling |
| Boss that doesn’t scale with level (HP-based XP only) | Either | Set Level (for display) and DisableLevelScaling: true |
/lvl reload (admin/OP). Otherwise restart the server.
For full field reference, see Configuration → Zone Level Config and Instance Level Config.