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

Coke Oven

Calling The Package

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

Add Recipe

RequiredTypeData Type
Required
Required
Type
Output
Data Type
IItemstack
Required
Required
Type
Fuel Output
Data Type
Integer
Required
Required
Type
Input
Data Type
IIngredient
Required
Required
Type
Time
Data Type
Integer

Example

script.zs
//Example:
mods.immersiveengineering.CokeOven.addRecipe(IItemStack output, int fuelOutput, IIngredient input, int time);
mods.immersiveengineering.CokeOven.addRecipe(<minecraft:coal>, 2, <ore:logWood>, 2000);

Remove Recipe

TypeData Type
Type
Output
Data Type
IItemstack

Example:

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