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

Thermal Evaporation

As of Mekanism 9.7.0 it is now possible to view all recipe strings of the Thermal Evaporation through the command /ct mekrecipes thermalevaporation

Addition

script.zs
mods.mekanism.thermalevaporation.addRecipe(ILiquidStack liquidInput, ILiquidStack liquidOutput);
mods.mekanism.thermalevaporation.addRecipe(<liquid:liquidfusionfuel>, <liquid:lava>);

Removal

script.zs
mods.mekanism.thermalevaporation.removeRecipe(IIngredient liquidInput, @Optional IIngredient liquidOutput);
mods.mekanism.thermalevaporation.removeRecipe(<liquid:water>, <liquid:brine>);
mods.mekanism.thermalevaporation.removeRecipe(<liquid:brine>);

Specifying an output parameter will only remove the specific recipe that results in that output from that input. Omitting the output parameter will remove all recipes that the input item can produce.

Removing all recipes

As of Mekanism 9.7.0 it is now possible to remove all Thermal Evaporation Plant recipes. (This excludes any recipes added via CraftTweaker)

script.zs
mods.mekanism.thermalevaporation.removeAllRecipes();