The Alloy Smelter package can be used to add/remove recipes to/from the Immersive Engineering Alloy Kiln.

Calling The Package

Link to calling-the-package

You can call the AlloySmelter package using mods.immersiveengineering.AlloySmelter

RequiredTypeData Type
Required
Required
Type
Output
Data Type
IItemstack
Required
Required
Type
Input 1
Data Type
IIngredient
Required
Required
Type
Input 2
Data Type
IIngredient
Required
Required
Type
Time
Data Type
Integer
ZenScript
Copy
//Example:
mods.immersiveengineering.AlloySmelter.addRecipe(IItemStack output, IIngredient first, IIngredient second, int time);
mods.immersiveengineering.AlloySmelter.addRecipe(<minecraft:diamond>, <ore:ingotIron>, <minecraft:dirt>, 2000);
TypeData Type
Type
Output
Data Type
IItemstack
ZenScript
Copy
//Example:
mods.immersiveengineering.AlloySmelter.removeRecipe(IItemstack output);
mods.immersiveengineering.AlloySmelter.removeRecipe(<minecraft:diamond>);