Jump to content

Crafting Container Item


Ronaldi2001

Recommended Posts

You can override Item#getContainerItem(ItemStack) to return an ItemStack 10% of the time.

 

Also, wrong section. This should be in Modder Support.

Edited by larsgerrits

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

20 hours ago, larsgerrits said:

You can override Item#getContainerItem(ItemStack) to return an ItemStack 10% of the time.

 

Also, wrong section. This should be in Modder Support.

So I have this for the the percentage, how would I make it so that it makes a new number when the item is being crafted and not just on the world startup? I made it a string so that I could see the number that it was generating.

 

	int min = 1;
	int max = 10;
	
	Random r = new Random();
	int i1 = r.nextInt(max - min + 1) + min;
	
	String SNumber = String.valueOf(i1);

 

~ Ronaldi2001

Link to comment
Share on other sites

4 minutes ago, Ronaldi2001 said:

So I have this for the the percentage, how would I make it so that it makes a new number when the item is being crafted and not just on the world startup? I made it a string so that I could see the number that it was generating.

 


	int min = 1;
	int max = 10;
	
	Random r = new Random();
	int i1 = r.nextInt(max - min + 1) + min;
	
	String SNumber = String.valueOf(i1);

 

Don't create a new Random every time, create one and store it. Item#itemRand already contains a Random instance that you can use.

 

You need to generate the random number in your override of Item#getContainerItem(ItemStack).

Edited by Choonster

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

22 hours ago, Choonster said:

 

Don't create a new Random every time, create one and store it. Item#itemRand already contains a Random instance that you can use.

 

You need to generate the random number in your override of Item#getContainerItem(ItemStack).

How do I create a random number without it saving and it keeps running?

~ Ronaldi2001

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.