Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

Alloy Kiln

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

Calling The Package

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

Add Recipe

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

Example

script.zs
//Example:
mods.immersiveengineering.AlloySmelter.addRecipe(IItemStack output, IIngredient first, IIngredient second, int time);
mods.immersiveengineering.AlloySmelter.addRecipe(<minecraft:diamond>, <ore:ingotIron>, <minecraft:dirt>, 2000);

Remove Recipe

TypeData Type
Type
Output
Data Type
IItemstack

Example

script.zs
//Example:
mods.immersiveengineering.AlloySmelter.removeRecipe(IItemstack output);
mods.immersiveengineering.AlloySmelter.removeRecipe(<minecraft:diamond>);