Posted April 19, 201411 yr When i craft with a damaged item it doesn't output anything GameRegistry.addRecipe(new ItemStack(boomerang_magical, 1), new Object[]{"MB ", 'B', boomerang, 'M', magic_powder}); I don't know why it isn't working Legend of Zelda Mod[updated September 20th to 3.1.1] Extra Achievements(Minecraft 1.8!)[updated April 3rd to 2.3.0] Fancy Cheeses[updated May 8th to 0.5.0]
April 19, 201411 yr Maybe - because the item has a metadata when its damaged? Try using OreDictionary.WILDCARD_VALUE as the metadata (item damage)
April 21, 201411 yr Author Maybe - because the item has a metadata when its damaged? Try using OreDictionary.WILDCARD_VALUE as the metadata (item damage) I don't understand what you mean by this. never used the OreDictionary before. Legend of Zelda Mod[updated September 20th to 3.1.1] Extra Achievements(Minecraft 1.8!)[updated April 3rd to 2.3.0] Fancy Cheeses[updated May 8th to 0.5.0]
April 21, 201411 yr With you recipe change: (new ItemStack(boomerang_magical, 1) to: (new ItemStack(boomerang_magical, 1, OreDictionary.WILDCARD_VALUE) Haven't really messed around with metadata (item damage) stuff, so tell me if it works or not.
April 24, 201411 yr Author Final code ended up being: GameRegistry.addRecipe(new ItemStack(boomerang_magical, 1), new Object[]{"MB ", 'B', boomerang, 'M', new ItemStack(magic_powder, 1, OreDictionary.WILDCARD_VALUE)}); Legend of Zelda Mod[updated September 20th to 3.1.1] Extra Achievements(Minecraft 1.8!)[updated April 3rd to 2.3.0] Fancy Cheeses[updated May 8th to 0.5.0]
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.