The Metal Press package can be used to add/remove recipes to/from the Immersive Engineering Metal Press.

Hinzufügen des Packages

Link to hinzufügen-des-packages

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

Rezept hinzufügen

Link to rezept-hinzufügen

RequiredTypeDatentyp
Required
Required
Type
Output
Datentyp
IItemstack
Required
Required
Type
Input
Datentyp
IIngredient
Required
Required
Type
Mold
Datentyp
IItemstack
Required
Required
Type
Energy
Datentyp
Integer
Required
Required
Type
Input Size
Datentyp
Integer
ZenScript
Copy
//Example:
mods.immersiveengineering.MetalPress.addRecipe(IItemStack output, IIngredient input, IItemStack mold, int energy, @Optional int inputSize);

mods.immersiveengineering.MetalPress.addRecipe(<minecraft:diamond>, <ore:logWood>, <minecraft:emerald>, 2000);
mods.immersiveengineering.MetalPress.addRecipe(<minecraft:diamond>, <ore:logWood>, <minecraft:emerald>, 2000, 16);

Rezept entfernen

Link to rezept-entfernen

TypeDatentyp
Type
Output
Datentyp
IItemstack
ZenScript
Copy
//Example:
mods.immersiveengineering.MetalPress.removeRecipe(IItemstack output);

mods.immersiveengineering.MetalPress.removeRecipe(<minecraft:diamond>);
TypeDatentyp
Type
Output
Datentyp
IItemstack
ZenScript
Copy
//Example:
mods.immersiveengineering.MetalPress.removeRecipeByMold(IItemstack output);

mods.immersiveengineering.MetalPress.removeRecipeByMold(<minecraft:diamond>);