This page relates to Thermal Expansion, which has built-in support!
Magmatic Dynamo / Magmatic Fuel
Link to magmatic-dynamo--magmatic-fuel
Methods
Link to methods
Add Fuel
Link to add-fuel
The following script will add 1000 mB of Water as a Fuel that produces 1000 RF.
ZenScript Copy// <recipetype:thermal:magmatic_fuel>.addFuel(String name, IFluidStack ingredient, int energy);
<recipetype:thermal:magmatic_fuel>.addFuel("magmatic_test", <fluid:minecraft:water>, 1000);
Remove Fuel
Link to remove-fuel
The following script will remove Lava as a Fuel.
ZenScript Copy// <recipetype:thermal:magmatic_fuel>.removeFuel(IFluidStack outputFluid);
<recipetype:thermal:magmatic_fuel>.removeFuel(<fluid:minecraft:lava>);