Modding Doc: Scaling
This skill summarizes Modding_Doc/Scaling at a high level and links to the full references.
Documentation References
- •Monster Scaling Overview — World scaling, monster scaling, schema details
Doc-Derived How-To (Adding Scaling)
- •Define world scaling configs in
src/main/resources/Server/<YourMod>/Combat/WorldScaling/to control level-by-distance behavior. - •Define monster scaling configs in
src/main/resources/Server/<YourMod>/Combat/MonsterScaling/withAppliesToandScaledStatsentries. - •Use stat IDs from the Stats system (including custom stats) for
ScaledStats. - •Validate scaling with
MonsterScalingServiceor in-game testing.
Notes:
- •Keep everything data-driven and namespaced; avoid hard-coded values.
- •Favor small, composable configs per monster family to keep tuning manageable.