Jump to content

Recommended Posts

Posted (edited)

I am making a Minecraft Mod for 1.12.2 Forge 14.23.5.2768, I'm using Eclipse Java Oxygen which has been setup already and I have added all the necessary code to add a block and four items.

I am new to Mod Development which is why I have come seeking help

 

the very first thing I need is a custom crafting table that has the below features
- Can craft in a 3x3 area

- Can have more than 1 output

- has a unique texture on the top, sides and bottom like a Vanilla Crafting Table

I'd appreciate the help thx

Edited by Acid Gamer
Posted (edited)
  On 4/17/2019 at 10:42 PM, Acid Gamer said:

the very first thing I need is a custom crafting table that has the below features

Expand  

I would suggest that the very first thing you need to do is to create and play around with stuff like tile entities and GUIs.

This way, you will be more familiar with how some modding concepts work.

Starting with a crafting GUI, which requires an IRecipe inplementation as well as a tile entity, including an GUI that handles the crafting interaction, can be rather confusing and unintuitive.

 

As for your problem:

  1. Override Block#onBlockActivated and open the GUI in Block#onBlockActivated in your crafting table class.
  2. Create a tile entity for your crafting table (not needed if you don't want your crafting table to retain its content when the GUI is closed).
  3. Create a GuiContainer for your GUI. For more details, take a look at the vanilla crafting table.
  4. Create an IRecipe implementation for your crafting recipes.

 

A detailed explanation of how an IRecipe implementation works can be found here:

http://www.minecraftforge.net/forum/topic/22927-player-based-crafting-recipes/

Edited by DavidM

Some tips:

  Reveal hidden contents

 

Posted (edited)

okay, I came across a bit of an issue when going through the link in the comment above... I'll let you guys have a look

 

  Reveal hidden contents

 

Edited by Acid Gamer
Posted (edited)

1. Stop using BlockBase. It is a very bad practice (please refer to the Common issues and recommendations). In your case, your CraftingTableTier2 should just extend Block.

2. IRecipe implementations are completely irrelevant to your crafting table. It does not make sense to have your crafting table block implement IRecipe. Implement IRecipe in a different class.

Edited by DavidM

Some tips:

  Reveal hidden contents

 

Posted

okay issue fixed but now I'm back to step one... I've got onBlockActivated in my crafting table class I just need a GUI for it to open can anyone teach me how to make one?

Posted

Vanilla has some good GUI examples

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Posted
  On 4/20/2019 at 12:34 AM, Acid Gamer said:

okay issue fixed but now I'm back to step one... I've got onBlockActivated in my crafting table class I just need a GUI for it to open can anyone teach me how to make one?

Expand  

EntityPlayer#openGui.

Some tips:

  Reveal hidden contents

 

Posted (edited)
  On 4/27/2019 at 2:02 AM, Acid Gamer said:

I found the Dispenser class and I'm using it's code as a ref for what I should do... wish me luck

Expand  

If you are making a crafting table why you take the code from the dispenser? Just take the crafting table one.

Edited by nov4e
Posted

BlockWorkbench

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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



×
×
  • Create New...

Important Information

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