I am making a More Recipes mod and I want to craft Records put of Obsidianparts and dyes.
Code:
ModLoader.addRecipe(new ItemStack(Item.record13), new Object[]
{
" X ", "XYX", " X ", 'X', mod_MoreRecipes.obsidianparts, 'Y', Item.dyePowder
});
Now my problem is, how do I get a specific dye, because Item.dyePowder is for all Dyes, not for only one. It would be also great, if you could tell me how to insert a Mutliple ID Item (e.g. 98:3 which is CircleStoneBrick)
I am making a More Recipes mod and I want to craft Records put of Obsidianparts and dyes.
Code:
Now my problem is, how do I get a specific dye, because Item.dyePowder is for all Dyes, not for only one. It would be also great, if you could tell me how to insert a Mutliple ID Item (e.g. 98:3 which is CircleStoneBrick)
Thank you for your help, Minecrafter1912