In Control Mod 1.19.2, 1.18.2: Spawn Mob Where You Want Them to be

Table of Contents:

4.2/5 - (358 votes)

In Control Mod is a simple mod that gives you full control over where mobs are allowed to spawn. It is based on a rule system. The rule files are located in config/incontrol. In Control Mod allows you to specify the mob types, block types, and dimensions that mobs are allowed to spawn in. This can be very useful for servers or creative maps where you want to have more control over the spawning of mobs.

In Control

How to install:

How to Use Forge to Install Minecraft Mods (Client Side)

How To Install The Fabric Mod Loader After Downloading It

Features:

There are currently five rule files (as of 3.5.1):

  • spawn.json: with this file you can block spawning of certain creatures under certain conditions. In addition, when a spawn is allowed you can also alter some of the properties of the mob like maximum health and others
  • summonaid.json: this is a file that is structured the same as spawn.json but is only used when zombies are summoned for aid
  • potentialspawn.json: with this file you can remove and add spawn rules under certain conditions. The rules in this file are used before the rules in spawn.json are fired so make sure that when you add a rule for new mobs here, the new mobs are allowed in spawn.json
  • loot.json: with this file you can control the loot that mobs drop when they are killed based on various criteria
  • experience.json: with this file you can control how much experience you get from killing mobs based on various criteria

Item Filter Examples

The following examples are all applied on playerhelditem but it is of course possible to use them for any kind of condition that supports items.

The simplest case. A simple stick:

    "playerhelditem": "minecraft:stick",

A list of different items:

    "playerhelditem": [ "minecraft:stone_pickaxe", "minecraft:stone_axe", "minecraft:stone_shovel", "minecraft:stone_sword" ],

A specific block with a specific metadata:

    "playerhelditem": "minecraft:stained_hardened_clay@13",

The same example specified with JSon:

    "playerhelditem": {
        "item": "minecraft:stained_hardened_clay",
        "damage": 13
     },

The same block with some NBT data:

    "playerhelditem": "minecraft:stained_hardened_clay@13/{display:{Lore:[\"My Clay\"]}}",

The same example specified with JSon:

    "playerhelditem": {
        "item": "minecraft:stained_hardened_clay",
        "damage": 13,
        "nbt": [
            {
                "tag": "display",
                "value": "My Clay"
            }
        ]
     },

An empty hand:

    "playerhelditem": { "empty": true },

In this example we need a damage pickaxe:

    "playerhelditem": {
      "item": "minecraft:iron_pickaxe",
      "damage": ">0"
    },

In this final example we test if a pickaxe has a specific enchantment (unbreaking in this case):

    "playerhelditem": {
      "item": "minecraft:iron_pickaxe",
      "nbt": [
        {
          "tag": "ench",
          "contains": [
            {
              "tag": "id",
              "value": 34
            }
          ]
        }
      ]
    },

Block Filters

Similarly to item filters there is also the block condition that can test on the existance of a specific block. Like with items it is possible to specify a list or a single block filter. Here are the possibilities on an individual block filter:

  • minecraft:sand: a block matching this id. Metadata and/or properties are ignored
  • ore:dyeBlue: a block matching the specified ore dictionary value
  • A Json descriptor which supports the following tags:
    • block: a block ID (like minecraft:sand or rftools:powercell)
    • properties: (only if block is used). This is a JSon array with properties to match against. As soon as this is present a blockstate will be constructed made out of the block and the properties specified here and the match has to be exact. So properties that are not specified here will be put to their default value
    • ore: a string indicating an ore dictionary value (for example ingotCopper, dyeBlue, plankWood, …)
    • mod: a string indicating the modid for the block
    • energy: an expression which will be evaluated to the amount of Forge Energy present in the block
    • contains: either a single JSon object or else an array of JSon objects representing item filters as explained in the item filter section. The contains test will succeed if it finds any matching item in the inventory (if the block to test actually represents an inventory)
    • side: this is a modifier for both energy and contains. If present it will indicate the side from which we want to examine the energy or inventory contents. If not present the ‘null’ side is used. This should be a string like east, west, south, north, up, or down.

Block Filter Examples

A diamond block:

    "block": "minecraft:diamond_block",

A block of planks:

    "block": "ore:plankWood",

Or in JSon syntax:

    "block": { "ore": "plankWood" },

An RFTools powercell containing more then 1000000 energy:

    "block": {
      "block": "rftools:powercell",
      "energy": ">1000000"
    },

A chest containing more then 10 sticks:

    "block": {
      "block": "minecraft:chest",
      "contains": {
        "item": "minecraft:stick",
        "count": ">10"
      }
    },

A powered button:

    "block": {
      "block": "minecraft:stone_button",
      "properties": [
            {
                "name": "powered",
                "value": "true"
            }
      ]
    },

Mob Counter

The ‘maxcount’ and ‘mincount’ tags to control mob spawning can be either a simple number or string containing a number and a mob but it can also be a more complex json with various conditions. The following tags are supported:

  • amount: the amount to compare with (can be scaled!)
  • perplayer: if this is true the amount will be scaled with the amount of players present
  • perchunk: if this is true the amount will be scaled with the amount of loaded chunks divided by 289 (this is how vanilla mobcap works)
  • mod: if this is set all mobs of a given mod are counted (can be used in combination with hostile or passive)
  • hostile: if this is set all hostile mobs are counted
  • passive: if this is set all passive mobs are counted
  • mob: this is a single mob or a list of mobs. If this is present only those mobs are counted

Mob Counter Examples

In spawn.json: deny skeletons if there are already more then 50 hostile vanilla mobs present per player:

  {
    "dimension": "minecraft:overworld",
    "mob": "minecraft:skeleton",
    "mincount": {
      "amount": 50,
      "hostile": true,
      "perplayer": true
    },
    "result": "deny"
  }

In spawn.json: deny all mobs of a given mod if there are already more then 50 mods of that mod present, scaled based on vanilla mob cap rules:

  {
    "dimension": "minecraft:overworld",
    "mod": "horriblecreatures",
    "mincount": {
      "amount": 50,
      "mod": "horriblecreatures",
      "perchunk": true
    },
    "result": "deny"
  }

Contrast above example with the old syntax where it would compare the amount of each individual mob of the given mod:

  {
    "dimension": "minecraft:overworld",
    "mod": "horriblecreatures",
    "mincount": 50,
    "result": "deny"
  }

Conditions

In this section all possible conditions are explained. Some conditions are not usable in all rules. This will be mentioned here. Whenever a position is tested in a rule the given position depends on the rule. For mob spawns this will be the position where the mob will spawn. For block break events this will be the position of the broken block. For player effects this is the position of the block on which the player is standing.

Possible types:

* S: a string
* B: a boolean (true/false)
* I: an integer
* F: floating point number
* [<type>]: a list of type (for example, [S] is a list of strings)
* JSON: a json in a specific format explained elsewhere

In Control Mod Screenshots:

In Control Download Links:

Minecraft Game version 1.11.2/1.10.2:download

 

Minecraft Game version 1.12.1/1.12:download

 

Minecraft Game version 1.12.2:download

 

Minecraft Game version 1.15.2:download

 

Minecraft Game version 1.16.3:download

 

Minecraft Game version 1.16.4:download

 

Minecraft Game version 1.16.5:download

 

Minecraft Game version 1.18.1download:

 

Minecraft Game version 1.19.2:download

 

Like Share Follow!

About Author

Zozo is Gamer Minecrafter. Review Best Minecraft Mods, Minecraft mods review. Find helpful customer reviews and review ratings for Modding Minecraft