Back to mods
Advanced Mob Leveling project artwork

CurseForge · Minecraft mod

Advanced Mob Leveling

An unofficial Auto Leveling continuation featuring formula-based attributes, KubeJS level controls, LootJS compatibility, and improved configuration formatting.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Advanced Mob Leveling release should I use?

Updated 4 days ago
Latest stable file AdvancedLeveling-1.21.1-1.0.1-fix.jar
Game version 1.21.1
Loader NeoForge

Advanced Mob Leveling AdvancedLeveling-1.21.1-1.0.1-fix.jar targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Advanced Mob Leveling required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Advanced Mob Leveling AdvancedLeveling-1.21.1-1.0.1-fix.jar need?

AdvancedLeveling-1.21.1-1.0.1-fix.jar. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Advanced Mob Leveling without breaking your instance.

Built for Advanced Mob Leveling AdvancedLeveling-1.21.1-1.0.1-fix.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use AdvancedLeveling-1.21.1-1.0.1-fix.jar. It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside AdvancedLeveling-1.21.1-1.0.1-fix.jar. It opens that exact file at the source.

About this project

What does Advanced Mob Leveling add?

Advanced Leveling

Advanced Leveling is an unofficial derivative and continuation of Auto Leveling by Daripher for Minecraft Forge 1.20.1. It adds precise formula-based attribute scaling, KubeJS level controls, LootJS compatibility, and a redesigned configuration system.

The mod keeps the autoleveling mod ID so existing worlds and datapacks remain compatible. This project is not affiliated with or endorsed by the original author.

Features

  • Mob levels based on distance, depth, time, dimension, and entity settings
  • Numeric and expression-based attribute scaling
  • Linear, exponential, conditional, and piecewise growth curves
  • KubeJS controls for per-dimension level bonuses
  • LootJS-compatible additional leveled-mob loot
  • Entity blacklists, whitelists, namespace wildcards, and hidden-level lists
  • Pretty-printed JSON for attributes and entity lists
  • Existing Auto Leveling world and datapack compatibility

Configuration

Advanced Leveling 1.0.1 uses three configuration files:

  • config/advancedleveling-common.toml: general server and leveling settings
  • config/advancedleveling-client.toml: client display settings
  • config/advancedleveling.json: attributes and entity lists

The old autoleveling-common.toml and autoleveling-client.toml files are not read or migrated. Move any settings you still need to the new files manually.

Example advancedleveling.json:

{
  "attributes": {
    "minecraft:generic.movement_speed": 0.001,
    "minecraft:generic.flying_speed": 0.001,
    "minecraft:generic.attack_damage": "level <= 10 ? base + (level - 1) * 2 : base + 18 + (level - 10) * 5",
    "minecraft:generic.armor": 0.1,
    "minecraft:generic.max_health": "base * (1.05 ^ (level - 1))",
    "autoleveling:monster.projectile_damage_bonus": 0.1,
    "autoleveling:monster.explosion_damage_bonus": 0.1
  },
  "mobs": {
    "blacklist": [
      "minecraft:ender_dragon",
      "minecraft:wither"
    ],
    "whitelist": [],
    "hidden_levels": []
  }
}

Entity lists accept exact IDs such as minecraft:zombie and namespace wildcards such as minecraft:*. When the whitelist is not empty, only matching entities can level. The blacklist takes priority over the whitelist. Changes are loaded on restart or with /reload.

Attribute expressions

A numeric value keeps the original behavior and applies a MULTIPLY_BASE bonus for each level above level 1:

"minecraft:generic.max_health": 0.05

A quoted expression returns the final target attribute value:

"minecraft:generic.max_health": "base + (level - 1) * 10"

Available variables:

  • base: the entity's original base attribute value
  • level: the displayed mob level, starting at 1

Exponential growth uses ^:

"minecraft:generic.max_health": "base * (1.05 ^ (level - 1))"

Conditional expressions can create piecewise growth curves:

"minecraft:generic.attack_damage": "level <= 10 ? base + (level - 1) * 2 : base + 18 + (level - 10) * 5"

Datapack attribute_modifiers also support expressions:

{
  "attribute": "minecraft:generic.max_health",
  "expression": "base + (level - 1) * 10"
}

KubeJS integration

The saved level bonus of each dimension can be replaced or incremented from a KubeJS server script:

const ServerLifecycleHooks = Java.loadClass(
    'net.minecraftforge.server.ServerLifecycleHooks'
)
const WorldLevelingData = Java.loadClass(
    'daripher.autoleveling.saveddata.WorldLevelingData'
)

let server = ServerLifecycleHooks.getCurrentServer()
let level = server.getLevel(dimension)

if (level != null) {
    let levelingData = WorldLevelingData.get(level)
    levelingData.setLevelBonus(25)
    levelingData.addLevelBonus(5)
}

setLevelBonus(value) replaces the dimension's saved bonus. addLevelBonus(value) adds to its current bonus. Both methods mark the data for saving automatically.

LootJS compatibility

Loot added through LootJS entity modifiers no longer causes Advanced Leveling's optional additional loot table to execute multiple times. LootJS additions and the autoleveling:gameplay/leveled_mobs loot table can be used together without unintended duplicate drops.

Requirements and compatibility

  • Minecraft 1.20.1
  • Minecraft Forge 47 or newer
  • Java 17
  • KubeJS and LootJS are optional
  • YiRanExpressionLib is embedded and does not need to be installed separately

Attribution and license

Advanced Leveling is an unofficial derivative of Auto Leveling by Daripher. Original portions remain attributed to Daripher and the original contributors. The fork does not imply endorsement by the original author.

The distributed jar embeds YiRanExpressionLib, which is also licensed under GNU AGPLv3.

Project description from CurseForge.

Pick your setup

Advanced Mob Leveling by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

2 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Advanced Mob Leveling versions and loaders

4 of 4 releases match

Looking for an older file? The official CurseForge project page is in Resources.