I am creating a mod for version 1.12.2 in Mcreator 2021.1

Started by FreeTime4Game on

Topic category: Help with Minecraft modding (Java Edition)

Joined Oct 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I am creating a mod for version 1.12.2 in Mcreator 2021.1

I am creating a mod for version 1.12.2 in Mcreator 2021.1
I want to add support for woods and ores from Biomes O' Plenty and Oh The Biomes You'll Go for my  mechanism in my mod. 
How to do it?

edit the recipe code. It's…
Sun, 10/02/2022 - 19:01

edit the recipe code. It's not that hard, you just set items for the recipe and then change their ID's in the code.

Joined Oct 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I don't do it through…
Sun, 10/02/2022 - 20:00

I don't do it through recipes, can I use tags somehow?

Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You can use Tags for Recipes.
Sun, 10/02/2022 - 20:42

You can use Tags for Recipes.

Joined Jul 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Make A Recipe And Set Every…
Sun, 10/02/2022 - 21:28

Make A Recipe And Set Every Thing You Want In The Menu After You Name It If You Are Trying To Change Recipes For Biomes 'o' Plenty Make Sure You Look Up There Regeristry Name For There Recipe and Here Is The Code For Useing Tags 

Sorry For Typos I Only Have A Couple Min To Type This 

 

{
  "type": "minecraft:crafting_shaped",
  "pattern": [
    "012",
    "345",
    "678"
  ],
  "key": {
    "0": {
      "tag": "forge:nuggets/tin"
    },
    "1": {
      "tag": "forge:nuggets/tin"
    },
    "2": {
      "tag": "forge:nuggets/tin"
    },
    "3": {
      "tag": "forge:nuggets/tin"
    },
    "4": {
      "tag": "forge:nuggets/tin"
    },
    "5": {
      "tag": "forge:nuggets/tin"
    },
    "6": {
      "tag": "forge:nuggets/tin"
    },
    "7": {
      "tag": "forge:nuggets/tin"
    },
    "8": {
      "tag": "forge:nuggets/tin"
    }
  },
  "result": {
    "item": "thunder_island:tin_ingot",
    "count": 1
  }
}
{
  "type": "minecraft:crafting_shapeless",
  "pattern": [
    "012",
    "345",
    "678"
  ],
  "key": {
    "0": {
      "tag": "forge:cobblestone"
    },
    "1": {
      "tag": "forge:cobblestone"
    },
    "2": {
      "tag": "forge:cobblestone"
    },
    "3": {
      "item": "minecraft:lava_bucket"
    },
    "4": {
      "tag": "forge:gears/iron"
    },
    "5": {
      "item": "minecraft:water_bucket"
    },
    "6": {
      "tag": "forge:cobblestone"
    },
    "7": {
      "tag": "forge:cobblestone"
    },
    "8": {
      "tag": "forge:cobblestone"
    }
  },
  "result": {
    "item": "thunder_island:cobblestone_gen_block",
    "count": 1
  }
}
Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
This generator is no longer…
Fri, 08/02/2024 - 06:29

This generator is no longer supported.