Other Settings (Advanced)
otherSettings
XP thresholds, level cap, and NPC health scaling for your scenario.
In the editor
"General game settings like XP, health, combat, etc."
- Editor location
- Other → Advanced → Other Settings
- Editor type
- JSON only
- Size limits
-
No character-length caps for this section. See the validation reference for the complete table.
Last updated
Schema
{
"otherSettings": {
"startingCharacterLevelUpRequirement": "number",
"extraRequiredXPPerCharacterLevel": "number",
"maxCharacterLevel": "number",
"npcHealthPerLevel": "number",
"npcMinHealth": "number"
}
}
Example
{
"startingCharacterLevelUpRequirement": 1000,
"extraRequiredXPPerCharacterLevel": 400,
"maxCharacterLevel": 100,
"npcHealthPerLevel": 12,
"npcMinHealth": 66
}
Note:
npcHealthPerLevelis the per-level HP scaling for NPCs. The exact arithmetic the engine applies is not formally documented.