This page relates to Immersive Intelligence, which has built-in support!
Electrolyzer
Link to electrolyzer
The Electrolyzer
package can be used to modify the Immersive Intelligence Electrolyzer recipes.
Importing the Package
Link to importing-the-package
ZenScript Copyimport mods.immersiveintelligence.Electrolyzer;
Adding Recipes
Link to adding-recipes
Parameters
Link to parameters
Type | Name | Required |
---|---|---|
Type ILiquidStack | Name Main Input | Required Yes |
Type ILiquidStack | Name Compound Input | Required Yes |
Type int | Name Mold | Required Yes |
Type int | Name Energy | Required Yes |
Type ILiquidStack | Name Time | Required No |
Syntax
Link to syntax
ZenScript Copymods.immersiveintelligence.Electrolyzer.addRecipe(ILiquidStack fluidInput, ILiquidStack fluidOutput1, int energy, int time, @Optional ILiquidStack fluidOutput2);
Example
Link to example
ZenScript Copymods.immersiveintelligence.Electrolyzer.addRecipe(<liquid:water>*4,<liquid:lava>*4,123,200,<liquid:hydrofluoric_acid>*8);
Removing Recipes
Link to removing-recipes
Parameters
Link to parameters-1
Type | Name | Required |
---|---|---|
Type ILiquidStack | Name Output | Required Yes |
Syntax
Link to syntax-1
ZenScript Copymods.immersiveintelligence.Electrolyzer.removeRecipe(ILiquidStack output);
Example
Link to example-1
ZenScript Copymods.immersiveintelligence.Electrolyzer.removeRecipe(<liquid:water>);