ZenScript
Copy
import mods.industrialforegoing.WashingFactory;

The first parameter is the input item, and it has to be an OreDict string. The second and third parameters are the input and output fluids respectively.

The example shown below turns a piece of Gold Ingot and 500mB of Water into 500mB of Lava:

ZenScript
Copy
// WashingFactory.add(String oreDictInput, ILiquidStack fluidInput, ILiquidStack fluidOutput);

WashingFactory.add("ingotGold", <liquid:water> * 500, <liquid:lava> * 500);

Put an OreDict string in the parameter to remove the recipe for that specific OreDict.

The example shown below removes the recipe for Gold Ingots:

ZenScript
Copy
// WashingFactory.remove(String oreDictInput);

WashingFactory.remove("ingotGold");