I am creating a mod for version 1.12.2 in Mcreator 2021.1

Started by FreeTime4Game on

Topic category: Help with modding (Java Edition)

Last seen on 16:42, 13. Nov 2022
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?

Last seen on 07:34, 28. Mar 2024
Joined Jul 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
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.

Last seen on 16:42, 13. Nov 2022
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?

Last seen on 19:25, 27. Mar 2024
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.

Last seen on 13:03, 29. Oct 2022
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
  }
}