A comprehensive Minecraft Forge mod that completely overhauls the vanilla non-linear experience system, providing multiple configurable experience calculation modes while maintaining full compatibility with all vanilla experience-related features.
base and level.jar file in your Minecraft mods folderConfiguration file location: config/linear-xp.toml
[general]
enableXpCalculationModifier = true
calculateMode = "STATIC" # Options: "STATIC", "LINEAR", "FORMULA"
STATIC Mode:
[static]
staticModeXpNeeded = 100 # Fixed XP required per level
LINEAR Mode:
[linear]
linearBaseXp = 100 # Base XP cost
LinearXpAddition = 1 # XP increase per level
FORMULA Mode:
[formula]
formula = "base+((level*level)*10)" # Custom formula
formulaBaseXp = 100 # Base value for formula
/xp commands work normally✅ Fully Compatible With:
/xp commandsThis project is licensed under the MIT License.
一个全面的 Minecraft Forge 模组,彻底改革了原版非线性经验系统,提供多种可配置的经验计算模式,同时保持与原版所有经验相关功能的完全兼容。
base 和 level 的自定义数学公式.jar 文件放入 Minecraft 的 mods 文件夹配置文件位置:config/linear-xp.toml
[general]
enableXpCalculationModifier = true # 是否启用经验计算修改
calculateMode = "STATIC" # 选项:"STATIC", "LINEAR", "FORMULA"
STATIC 模式:
[static]
staticModeXpNeeded = 100 # 每级所需的固定经验值
LINEAR 模式:
[linear]
linearBaseXp = 100 # 线性基础经验值
LinearXpAddition = 1 # 线性经验增量
FORMULA 模式:
[formula]
formula = "base+((level*level)*10)" # 公式模式计算公式
formulaBaseXp = 100 # 公式模式基础经验
/xp 命令正常工作✅ 完全兼容:
/xp 命令本项目采用 MIT 许可证。