Minecraft Mob Stages mod 2024 download
logo
minecraft mod Mob Stages

Mob Stages

Game Version: 1.12.2
Total Downloads: 9,529,122
Updated: May 2, 2018
Created: Sep 19, 2017
Download Mob StagesDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
MobStages-1.12.2-2.0.8.jar +3 More+3 Others release 24.07 KB May 2, 2018 1.12.2 841,141 download Mob Stages MobStages-1.12.2-2.0.8.jar

+3 More+3 Others releaseDownload
MobStages-1.12.2-1.0.7.jar +3 More+3 Others release 24.47 KB Mar 10, 2018 1.12.2 1,688,303 download Mob Stages MobStages-1.12.2-1.0.7.jar

+3 More+3 Others releaseDownload
MobStages-1.12.2-1.0.5.jar +3 More+3 Others release 23.01 KB Oct 7, 2017 1.12.2 151,673 download Mob Stages MobStages-1.12.2-1.0.5.jar

+3 More+3 Others releaseDownload
MobStages-1.12.2-1.0.4.jar +3 More+3 Others release 22.68 KB Oct 5, 2017 1.12.2 140 download Mob Stages MobStages-1.12.2-1.0.4.jar

+3 More+3 Others releaseDownload
MobStages-1.12.1-1.0.2.jar +3 More+3 Others release 22.83 KB Sep 19, 2017 1.12.1 966 download Mob Stages MobStages-1.12.1-1.0.2.jar

+3 More+3 Others releaseDownload
MobStages-1.12.2-2.0.13.jar +3 More+3 Others alpha 24.26 KB Dec 4, 2018 1.12.2 6,843,604 download Mob Stages MobStages-1.12.2-2.0.13.jar

+3 More+3 Others alphaDownload
MobStages-1.12.2-2.0.12.jar +3 More+3 Others alpha 24.27 KB Oct 29, 2018 1.12.2 279 download Mob Stages MobStages-1.12.2-2.0.12.jar

+3 More+3 Others alphaDownload
MobStages-1.12.2-2.0.11.jar +3 More+3 Others alpha 24.27 KB Oct 2, 2018 1.12.2 283 download Mob Stages MobStages-1.12.2-2.0.11.jar

+3 More+3 Others alphaDownload
MobStages-1.12.2-2.0.10.jar +3 More+3 Others alpha 24.27 KB Sep 30, 2018 1.12.2 87 download Mob Stages MobStages-1.12.2-2.0.10.jar

+3 More+3 Others alphaDownload
MobStages-1.12.2-2.0.9.jar +3 More+3 Others alpha 24.27 KB Sep 29, 2018 1.12.2 53 download Mob Stages MobStages-1.12.2-2.0.9.jar

+3 More+3 Others alphaDownload
MobStages-1.12.2-1.0.6.jar +3 More+3 Others alpha 23.01 KB Oct 29, 2017 1.12.2 1,042 download Mob Stages MobStages-1.12.2-1.0.6.jar

+3 More+3 Others alphaDownload
MobStages-1.12.2-1.0.3.jar +3 More+3 Others alpha 22.83 KB Sep 20, 2017 1.12.2 115 download Mob Stages MobStages-1.12.2-1.0.3.jar

+3 More+3 Others alphaDownload

Description

Share this:

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");

Comments

Add a comment