How To Use The Incontrol Minecraft Mod
Basic spawn Limit
This rule limits each mob type to a maximum of 200 per world.
{
"dimension": "minecraft:overworld",
"mincount": {
"amount": 200
},
"result": "deny"
}
Dimension - The dimension this rule applies to.
mincount - The maximum allowed spawn count.
amount - The number of mobs allowed.
result - Determines the outcome when the limit is reached. Setting this to "deny"
will prevent further mob spawns past the limit
Per player
This setting scales mob spawns based on the number of players online.
{
"dimension": "minecraft:overworld",
"mincount": {
"perplayer": true,
"amount": 50
},
"result": "deny"
}
perplayer - If true
, the mob limit is applied per player.
amount - The number of mobs allowed per player.
Block certian Mobs
You can block certain mobs from spawning, which is useful if one type is taking up too many spawn slots.
{
"mob": ["minecraft:pig","minecraft:chicken"],
"onjoin": true,
"result": "deny"
}
mob - A list of mobs to restrict. Use their in-game ID, which can be found using the /summon
command. Follow the format in the example: ["mob1", "mob2"]
.
onjoin - If true
, the rule takes effect when the world loads.
Mods wiki
Different Minecraft versions may have slight variations in functionality. Check the mod’s wiki for version-specific details, additional examples, and other configuration options: https://www.mcjty.eu/docs/mods/control-mods/