Jump to content

[SOLVED] im a newb


Recommended Posts

GameRegistry.addShapelessRecipe(new ItemStack(ModItems.Riptide), new ItemStack(ModItems.Riptide = OreDicitionary.WILDCARD_VALUE), new ItemStack(ModItems.anklamolses));

 

this is my recipe that I added your string to earlier, is this how I should do it ? Im guessing not because I gt an error saying that OreDicitionary is not resolved as a variable. what should I do?

Im serious don't look at it!!

Link to comment
Share on other sites

new ItemStack(ModItems.Riptide = OreDicitionary.WILDCARD_VALUE)

You have no idea WTF you're doing, do you.

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

I get the sense that you're getting into modding in order to learn how to code, and I think that's wonderful, but the forums here are very much not a Java school so I suggest you look elsewhere for those kinds of tips.

 

To answer your question by adding to what's already been said: there is a way to define an ItemStack to have a particular item, a particular size, and a particular metadata value. If you set the metadata value of an ItemStack to OreDictionary.WILDCARD_VALUE (which is actually equal to INT_MAX, behind the scenes), the ItemStack when used to define a recipe will produce a recipe ignore the damage value of the item.

 

ItemStack someItemStack = new ItemStack(yourItem, quantity, metadata)

 

Except the above code isn't copy-paste ready: you will want to pass the OreDictionary.WILDCARD_VALUE as the metadata of the item.

Link to comment
Share on other sites

Boonie, just as a tip for you to learn: I enjoyed ScratchForFun and MrCrayFishs' tutorials on forge modding to help me understand programming and mod making better. I'm sure they could teach you some things to help you on your journey. :P

I am not a cat. I know my profile picture is sexy and amazing beyond anything you could imagine but my cat like features only persist in my fierce eyes. I might be a cat.

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.