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

Bottling Machine

Calling The Package

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

Add Recipe

RequiredTypeData Type
Required
Required
Type
Output
Data Type
IItemstack
Required
Required
Type
Input
Data Type
IIngredient
Required
Required
Type
Fluid
Data Type
Fluidstack

Example

script.zs
//Example:
mods.immersiveengineering.BottlingMachine.addRecipe(IItemStack output, IIngredient input, ILiquidStack fluid);
mods.immersiveengineering.BottlingMachine.addRecipe(<minecraft:diamond>, <ore:logWood>, <liquid:water>);

Remove Recipe

TypeData Type
Type
Output
Data Type
IItemstack

Example

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