
Modrinth · Minecraft mod
Mob Stages
This mod hooks in to the GameStage API, and allows mob spawning to be gated behind custom progression.
Quick answer
Which Mob Stages release should I use?
Mob Stages 2.0.8 targets 1.12.2 with Forge. Installation on the client is optional. Installation on the dedicated server is optional. All 2 required mods have matching files.
Where it goes
Is Mob Stages required on the client, server, or both?
Installation on the client is optional. Installation on the dedicated server is optional.
The source marks this as usable on both the client and server.
What else does Mob Stages 2.0.8 need?
2.0.8. Change the file and its required mods may change too.
Install Game Stages, Bookshelf first. We found matching files for this game-version and loader setup. 1 comes through another mod in the chain.
1 extra mod was pulled in by another dependency. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add Mob Stages without breaking your instance.
Built for Mob Stages 2.0.8. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 2.0.8. It targets 1.12.2 with Forge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install Game Stages, Bookshelf first. We found matching files for this game-version and loader setup. 1 comes through another mod in the chain.
- 03
Put it on the correct side
Installation on the client is optional. Installation on the dedicated server is optional.
- 04
Pick the file you checked
Use the “Get this file” button beside 2.0.8. It opens that exact file at the source.
About this project
What does Mob Stages add?
Mob Stages
Description
This mod is an addon for the GameStage API. This allows for mob spawning to be put into a custom progression system. You should check out the GameStage API mod's description for more info. To give a brief run down, stages are parts of the progression system set up by the modpack or server. Stages are given to players through a command, which is typically ran by a questing mod, advancement, or even a Command Block.
This project is sponsored by Nodecraft. Use code DARKHAX for 30% off your first month of service!
Setup
This mod uses CraftTweaker for configuration.
Global Setup
mods.MobStages.addStage(String stage, String entityId);- Adds a mob to a stage. When it attempts to spawn in the world, it will check for nearby players that have this stage unlocked. If no valid players are found, the mob will not be able to spawn.mods.MobStages.addReplacement(String entityId, String replacementId);- Adds a replacement for the mob. If it fails to spawn, the replacement will be spawned instead. This requires that you add the mob to a stage first. This is optional.mods.MobStages.addRange(String entityId, int range);- Sets the range to search for players. The fault range is 256, and is automatically set for you. This is optional.mods.MobStages.toggleSpawners(String entityId, boolean allow);- Allows for mob spawners to ignore the stage rules and spawn the mob anyway.
Dimensional Setup
This mod adds dimension specific versions of all the methods in the previous section. The dimension versions accept the numeric dimension id as an additional last parameter. For example, mods.MobStages.addStage(String stage, String entityId); becomes mods.MobStages.addStage(String stage, String entityId, int dimension);. If a mob has a dimensional entry, it will override the global entry.
Example Script
// Creepers require stage one to spawn mods.MobStages.addStage("one", "minecraft:creeper");// Skeletons require stage two, or any spawner.
mods.MobStages.addStage("two", "minecraft:skeleton");
mods.MobStages.toggleSpawner("minecraft:skeleton", true);// Spiders require stage three in the nether.
mods.MobStages.addStage("three", "minecraft:spider", -1);// Zombies
mods.MobStages.addStage("four", "minecraft:zombie", -1);
mods.MobStages.toggleSpawner("minecraft:zombie", true, -1);// Zombies are replaced by bats in other dimensions.
mods.MobStages.addStage("four", "minecraft:zombie");
mods.MobStages.addReplacement("minecraft:zombie", "minecraft:bat");
Project description from Modrinth.
Pick your setup
Mob Stages by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
1.12.2
1 loader build1.12.1
1 loader build1.12
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Mob Stages versions and loaders
2.0.13
MobStages-1.12.2-2.0.13.jar
7 Jun 2023
2.0.12
MobStages-1.12.2-2.0.12.jar
7 Jun 2023
2.0.11
MobStages-1.12.2-2.0.11.jar
7 Jun 2023
2.0.10
MobStages-1.12.2-2.0.10.jar
7 Jun 2023
2.0.9
MobStages-1.12.2-2.0.9.jar
7 Jun 2023
2.0.8
MobStages-1.12.2-2.0.8.jar
7 Jun 2023
1.0.7
MobStages-1.12.2-1.0.7.jar
7 Jun 2023
1.0.6
MobStages-1.12.2-1.0.6.jar
7 Jun 2023
1.0.5
MobStages-1.12.2-1.0.5.jar
7 Jun 2023
1.0.4
MobStages-1.12.2-1.0.4.jar
7 Jun 2023
1.0.3
MobStages-1.12.2-1.0.3.jar
7 Jun 2023
1.0.2
MobStages-1.12.1-1.0.2.jar
7 Jun 2023
Looking for an older file? The official Modrinth project page is in Resources.