Bottling Machine
Link to bottling-machine
Calling The Package
Link to calling-the-package
You can call the BottlingMachine package using mods.immersiveengineering.BottlingMachine
.
Add Recipe
Link to add-recipe
Required | Type | Data Type |
---|---|---|
Required Required | Type Output | Data Type IItemstack |
Required Required | Type Input | Data Type IIngredient |
Required Required | Type Fluid | Data Type Fluidstack |
Example
Link to example
ZenScript Copy//Example:
mods.immersiveengineering.BottlingMachine.addRecipe(IItemStack output, IIngredient input, ILiquidStack fluid);
mods.immersiveengineering.BottlingMachine.addRecipe(<minecraft:diamond>, <ore:logWood>, <liquid:water>);
Remove Recipe
Link to remove-recipe
Type | Data Type |
---|---|
Type Output | Data Type IItemstack |
Example
Link to example-1
ZenScript Copy//Example:
mods.immersiveengineering.BottlingMachine.removeRecipe(IItemStack output);
mods.immersiveengineering.BottlingMachine.removeRecipe(<minecraft:diamond>);