Jump to content

[1.12] How to make Costum Crafting table with costum recipes?


IlTosaerba

Recommended Posts

Hello modder! 

I'm trying to do a mod, and I need to create a block similar to the crafting table, but with costum recipes.

How exatly can I do this?

 

(I try to read the original files and classes for the crafting table... but it's very complicate and I don't understand nothingO.o)

Link to comment
Share on other sites

13 minutes ago, IlTosaerba said:

Hello modder! 

I'm trying to do a mod, and I need to create a block similar to the crafting table, but with costum recipes.

How exatly can I do this?

 

(I try to read the original files and classes for the crafting table... but it's very complicate and I don't understand nothingO.o)

UPDATE

Here's the files I have where the block appear:

src/main/java/com/WLLC/<myMod>/Reference.java : https://pastebin.com/M7p0GnrZ

 

src/main/java/com/WLLC/<myMid/blocks/BlockRaffineria.java: https://pastebin.com/wT0FD44C

src/main/java/init/ModBlocks.java: https://pastebin.com/80Hr2iST

 

src/main/resources/assets/<myModID>/blockstates/blockraffineria.json: https://pastebin.com/NZaWJgDf

 

src/main/resources/assets/<myModID>/models/block/raffineria.json: https://pastebin.com/2pRCaxzr

 

src/main/resources/assets/<myModID>/models/item/blockraffineria.json : https://pastebin.com/me4iQXW0

Link to comment
Share on other sites

Go figure! I've done this exact thing!

 

See here and here for the relevant files. Basically, what you have to do is:

  1. Create the block (if you want to store the items in the block after a player has quit, you will need a TileEntity - normal crafting table & my crafting table do not do this)
  2. Create the container & gui
  3. Register the slots in the container & the textures in the gui
  4. Setup a GUI handler
  5. Add an right-click action to the block so that it opens the gui
  6. Create a custom recipe class or use minecraft's IRecipe (I created my own so it could access the player doing the crafting - this is probably not necessary, but it depends on what you're doing)
  7. If you made your own class, create some kind of registry to hold the recipes you want to have, otherwise just use CraftingManager
  8. Add checks in the crafting slot / container to see if the recipe is matched, and if it is, get the result and clear the table
  9. Voila! Tables!

If you have any specific questions, I'd be willing to help when I've got time.

 

 

 

  • Like 1
  • Thanks 1

Developer of Randores (adds 256^3 ores to the game) and Arcane Bags (adds ridiculous storage with ridiculous crafting recipes).

I know Java pretty well... So yeah...

Quote

This is where I'd put an inspirational and/or clever quote, but I can't think of one right now...

This is the output of the totally, 100% working compiler for my programming language, Planet9:

Beginning Compilation...
Failed compilation!
planet9.compiler.error.CompilationException: Compiler not yet implemented
	at planet9.compiler.Compiler.compile(Compiler.java:39)
	at planet9.compiler.app.CompilerApp.main(CompilerApp.java:147)

 

Link to comment
Share on other sites

It's a little bit hard for me, I'm sorry. But it seems that the game use 3 inventory(for the workbench) :

- the inventory of the player.

-the workbench matrix(recipe)

-the workbench craft result

 

When you click on the block the game should open the gui and a container with the 3 inventory.

And then create your custom recipe class using IRecipe.

Link to comment
Share on other sites

2 hours ago, Socratic_Phoenix said:

Go figure! I've done this exact thing!

 

See here and here for the relevant files. Basically, what you have to do is:

  1. Create the block (if you want to store the items in the block after a player has quit, you will need a TileEntity - normal crafting table & my crafting table do not do this)
  2. Create the container & gui
  3. Register the slots in the container & the textures in the gui
  4. Setup a GUI handler
  5. Add an right-click action to the block so that it opens the gui
  6. Create a custom recipe class or use minecraft's IRecipe (I created my own so it could access the player doing the crafting - this is probably not necessary, but it depends on what you're doing)
  7. If you made your own class, create some kind of registry to hold the recipes you want to have, otherwise just use CraftingManager
  8. Add checks in the crafting slot / container to see if the recipe is matched, and if it is, get the result and clear the table
  9. Voila! Tables!

If you have any specific questions, I'd be willing to help when I've got time.

 

 

 

Thanks but I can't apply your method 'cause u use a lot of class which I haven't. So if I try to copy ur code it will never work 'cause I haven't all class (for example Tome class and Keys class and others)

Link to comment
Share on other sites

@IlTosaerba You're not supposed to copy the code... your supposed to look at the code and ask questions if you need help, I'm just providing another example. The Keys class just stores some constants, and the Tome class isn't at all connected to the crafting table... Use the example to write your own classes.

Developer of Randores (adds 256^3 ores to the game) and Arcane Bags (adds ridiculous storage with ridiculous crafting recipes).

I know Java pretty well... So yeah...

Quote

This is where I'd put an inspirational and/or clever quote, but I can't think of one right now...

This is the output of the totally, 100% working compiler for my programming language, Planet9:

Beginning Compilation...
Failed compilation!
planet9.compiler.error.CompilationException: Compiler not yet implemented
	at planet9.compiler.Compiler.compile(Compiler.java:39)
	at planet9.compiler.app.CompilerApp.main(CompilerApp.java:147)

 

Link to comment
Share on other sites

18 hours ago, Socratic_Phoenix said:

@IlTosaerba You're not supposed to copy the code... your supposed to look at the code and ask questions if you need help, I'm just providing another example. The Keys class just stores some constants, and the Tome class isn't at all connected to the crafting table... Use the example to write your own classes.

Allright, I'll try hoping it will work

Link to comment
Share on other sites

18 hours ago, Socratic_Phoenix said:

@IlTosaerba You're not supposed to copy the code... your supposed to look at the code and ask questions if you need help, I'm just providing another example. The Keys class just stores some constants, and the Tome class isn't at all connected to the crafting table... Use the example to write your own classes.

And the CraftingBlocks class what exatly contain?

Link to comment
Share on other sites

3 hours ago, IlTosaerba said:

And the CraftingBlocks class what exatly contain?

CraftingBlocks simply contains the instances of the block objects....

Edited by Socratic_Phoenix

Developer of Randores (adds 256^3 ores to the game) and Arcane Bags (adds ridiculous storage with ridiculous crafting recipes).

I know Java pretty well... So yeah...

Quote

This is where I'd put an inspirational and/or clever quote, but I can't think of one right now...

This is the output of the totally, 100% working compiler for my programming language, Planet9:

Beginning Compilation...
Failed compilation!
planet9.compiler.error.CompilationException: Compiler not yet implemented
	at planet9.compiler.Compiler.compile(Compiler.java:39)
	at planet9.compiler.app.CompilerApp.main(CompilerApp.java:147)

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Etumax Royal Honey Price In Pakistan - Get Free Delivery Shop Today Online With Online Shopping in Pakistan Etumax Royal Honey Available At Our Store Online Shopping in Pakistan, 
    • I want to make a tree decorator that will generate a beehive under branches of my tree. I have no idea how to check for branches and make beehives generate because TreeDecorator.Context.logs() is just a block pos and i dont understand how it works. i hope ill get an answer here.
    • Imagine this: you've painstakingly accumulated $97,000 worth of Bitcoin, only to see it vanish into the digital abyss at the hands of cunning scammers. It's a devastating blow, leaving you feeling helpless and betrayed. But fear not, for Lee Ultimate Hacker is here to turn the tide in your favor. After conducting extensive research on cryptocurrency recovery options, I stumbled upon Lee Ultimate Hacker, and it proved to be the most suitable choice for the daunting task at hand. Despite my initial skepticism, they shattered my doubts by successfully retrieving $92,000 of the lost Bitcoin—a feat I once deemed impossible. From the moment I reached out to Lee Ultimate Hacker and provided them with all the pertinent information about the fraudulent transaction, they sprang into action with unwavering determination. True to their word, they delivered on their promise to recover the lost Bitcoin within an impressive timeframe of 24 to 72 hours. Their professionalism, expertise, and commitment to their clients were truly commendable, transforming what seemed like an insurmountable ordeal into a resounding triumph. In my eyes, the investment of both time and money was more than justified by the remarkable outcome achieved by Lee Ultimate Hacker. So, if you've fallen victim to cryptocurrency scams and are grappling with the anguish of lost funds, don't despair. Reach out to Lee Ultimate Hacker and let them work their magic. Their track record of success speaks for itself, and with their assistance, you can reclaim what's rightfully yours and emerge stronger than ever before. Don't let the darkness of cybercrime overshadow your financial future. Take a stand against fraudsters with the help of Lee Ultimate Hacker, and witness the transformation from despair to triumph. Your journey to recovery starts here. LEEULTIMATEHACKER@ AOL. COM or Support @ leeultimatehacker . com. telegram:LEEULTIMATE or wh@tsapp +1  (715) 314  -  9248 https://leeultimatehacker.com Thank you.
    • There's a scheme I got into where they promised to trade Bitcoin for me and take a cut as a commission. Seemed like a good idea at the time. But then, things went south real fast. They ended up transferring   $190,000 worth of my Bitcoin. I was devastated and felt completely helpless. That's when I stumbled upon the Wizard Web Recovery Tool. It was like a beacon of hope amid chaos. With this tool, I could finally start digging into what went wrong and hopefully get my Bitcoin back. Using Wizard Web was surprisingly easy. I just had to plug in some details about my Bitcoin account and let it do its thing. It started scanning the internet, looking for any clues about what happened to my Bitcoin. It felt like having a detective on my side, searching for answers. And guess what? Wizard Web found some leads. It uncovered evidence of the scheme's shady dealings and helped me track down the people responsible for losing my Bitcoin. Armed with this information, I took the case to court. After a long and hard-fought legal battle, the court ruled in my favor. The perpetrators were held accountable for their actions and faced criminal charges for their involvement in the scheme. It was a victory not just for me, but for anyone who's been taken advantage of by these kinds of scams. Thanks to Wizard Web Recovery, I was able to get justice and reclaim what was rightfully mine. It showed me that even in the face of adversity, there's always a way to fight back. And with the right tools and determination, anything is possible.   The following is the contact information for Wizard Web Recovery.   Email: wizard web recovery((@))programmer . net
    • Hello, good morning. I know some programming and I'm interested in mod creation. That's why I've decided to follow a tutorial guide on YouTube by TurtyWurty. https://www.youtube.com/watch?v=DhoX9cmAZqA&t=160s&ab_channel=TurtyWurty I've followed the tutorial perfectly. The problem is that when checking the food, the texture doesn't load for me. However, everything seems fine no matter how much I check. I'm sure it's something trivial, the problem is that I can't find it. Could you help me solve it, please? I leave a zip of my file so you can edit it freely. forge-1.20-Civicraft.rar
  • Topics

×
×
  • Create New...

Important Information

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