Jump to content

Search the Community

Showing results for tags 'recipes'.

  • Search By Tags

    • recipes ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 14 results

  1. I have been working on recipes for my mod and have come across two errors. ERROR ONE: [19:38:01] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe echoingend:gazite_block com.google.gson.JsonParseException: Map entry 'A' : Failed to parse either. First: Input does...
  2. So, there was this thing in ProjectE, where all items had it's emc value (equivalent cost or smth) and it's was computed from sum of it's ingredients (some items had pre-written emcs, so pretty much all of items' values could be calculated from its crafting recipe). I want to do something similar: s...
  3. Yesterday everything was fine and yes the world did take a long time to load but it did load unlike today. Ive been looking at the loading terrain screen for 30 minutes cause the game was not responding and all it says in the game dashboard is error with registerting recipes. I tried multiple times...
  4. Hi, i'm trying to add a recipe that lowers the durability of a tool in the crafting table but i can't figure out how to do it. Here is an example of the basic json file where a melon is cut into 4 slices with an axe { "type": "minecraft:crafting_shapeless", "category": "misc", "ingredi...
  5. I made this Custom Block for my mod that was intended to be like a furnace but only for a specific item, that can be fueled only by another item. the problem is that after creating the FusionRecipe (the custom recipe type) and replacing all the RecipeTypes.SMELTING with it, the furnace stopped...
  6. (Note: I am reiterating what I said in my previous post to reach a broader amount of people and hopefully find a solution quicker). I have been trying to add a weapon to the game though I am finding it difficult as the code I have followed from the tutorial uses a recipe, among other things. I...
  7. I have a server that I own with my friend (we use a third-party server site like Akliz), and we play Cottage Witch on there, specifically version 1.16.6 as that's the newest version our server provider can support. We're having a great time, but we noticed a big issue: we can't make wool out of stri...
  8. For a while now I have been following a tutorial on YouTube for DataGen that I am using for my mod. I have come across an error that I wanted to check on here before acting on anything that could mess up my progress. The error is as follows: Caused by: java.lang.IllegalStateException: No way...
  9. I have been following a tutorial for DataGen for my Minecraft Mod and I have come across an error. Caused by: java.lang.IllegalStateException: No way of obtaining recipe droidsancientrelics:lemon_juice I am not sure why this has happened for the Lemon Juice specifically, as no error is present...
  10. Getting back into modding, the last time I seriously modded was almost 6 years ago. I'm pretty rusty and a lot has changed. What I'm trying to do right now is right a method that can remove an item's recipe using only said item's ResourceLocation as an input. From what I've gathered from olde...
  11. I have been following this tutorial for my mod, though I am wondering how I add multiple items in the ModRecipeProvider class. ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, ModItems.LEMON_JUICE.get(), 4) .requires(ModItems.LEMON.get()) .save(pWrite...
  12. I'm somewhat of a beginner at forge and I'm trying to add custom recipe types to my mod. I've been trying to adapt the solution from https://www.youtube.com/watch?v=IOFbegpYY0k and update it to 1.20.2 with the help of the forge docs without success. Does anyone know anything about creating such...
  13. In 1.19.2 and prior to that, it was possible to create a smelting recipe that produced a stack of more than one result item (e.g. 1 dirt smelts to 2 diamonds) by using the following in the recipe JSON: "result": { "item": "minecraft:diamond", "count": 2 }, This was added by forge, it...
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.