Jump to content

[1.7.2] Getting Recipe Ingredients


conqueror224

Recommended Posts

I've been trying to figure out a way to obtain the Object array that stores the items in a recipe for days now. I really just need some help figuring out how to access the arrays. I've attempted to see how NEI gets the ingredients but it seems to be beyond my understanding. I understand how to get the recipe list and all that just not how to get the object arrays that describe what the recipe actually is. There's a method that gives the output of a recipe but not the input. How would I get the input?

Link to comment
Share on other sites

Thank you for the quick response. But I still don't understand how figuring out what type the recipe is will allow me to access the object[] that holds the ingredients. Could you please elaborate.

 

while(recIterator.hasNext()){
    		if(recIterator.next() instanceof ShapedRecipes){
    		}
}

 

I pasted my simple code to find out what type it is but I don't know how to proceed further and get the array.

Link to comment
Share on other sites

public void removeRecipe()
{
Iterator iterator = FurnaceRecipes.smelting().getSmeltingList().entrySet().iterator();
Entry entry;
do 
{
entry = (Entry)iterator.next();
if(((ItemStack)entry.getKey()).getUnlocalizedName().equalsIgnoreCase("tile.oreIron")||((ItemStack)entry.getKey()).getUnlocalizedName().equalsIgnoreCase("tile.oreGold"))
{
	iterator.remove();
	System.out.println(((ItemStack)entry.getKey()).getUnlocalizedName()+ " Removed!");
}
}

^ look at this, took it out from my mod. i use it to remove recipes.

*********************************

**  Always remember you are unique,  **

**  just like everyone else                   **     

**********************************

Was my post helpful? Say thanks and

press the thank you button, on my post!!

God, damn it!

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.