Jump to content

[1.16.4] help with container items


Glados1235

Recommended Posts

hello! I am new to Minecraft modding and I'm modding for 1.16.4 I want to create an item that doesn't get used and takes damage during crafting (like ic2's hammer or cutters)

this is the first mod I'm trying to make to learn and I prefer to learn through examples

here is what I have for the item in question LEGO_MOLD or lego_mold

 

my Item Init class

https://pastebin.com/X6pjkUEi

 

the container item class I think is correct? (followed a tutorial kiiinda know how it works but not really)

https://pastebin.com/Jpwerbgy

 

and the recipe I want to affect

https://pastebin.com/dYPCxdjf

 

I know the container class is what's needed but how do I make the LEGO_MOLD the item it's affecting?

like I said I'm brand new to this and don't know much java so examples would be super helpful!

and it this is in the wrong place please tell me i dont post on forms much thanks!

Edited by Glados1235
forgot the version in the title
Link to comment
Share on other sites

  • Glados1235 changed the title to [1.16.4] help with container items
11 hours ago, diesieben07 said:

Then you should know how to make an instance of a class and how inheritance works...

I don't that is why I'm asking for help here as there are no tutorials or examples anywhere that help with what I'm trying to do I've been trying for a few days now to figure it out and I cant I don't know what I'm supposed to do as no one wants to help

Link to comment
Share on other sites

Line 20 is wrong.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Look at line 20 very carefully.
Think about what D7 said in his first reply.

Edited by Draco18s

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

okay so i sorta got it

i added 

public static final LegoMold legoMold = new LegoMold();

and changed line 20 to

	public static final RegistryObject<Item> LEGO_MOLD = ITEMS.register("lego_mold",
			() -> new Item(new Item.Properties().group(LegoModItemGroup.LEGO_MOD).maxStackSize(1).containerItem(legoMold)));

and now it works but instead of giving me back the mold but damaged it just gives me a air block so i assume i need to tell it what item to give?

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



×
×
  • Create New...

Important Information

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