This page relates to Thermal Expansion, which has built-in support!
Stirling Dynamo
Link to stirling-dynamo
Methods
Link to methods
Add Fuel
Link to add-fuel
The following script will add Dirt as a Fuel that produces 1000 RF.
ZenScript Copy// <recipetype:thermal:stirling_fuel>.addFuel(String name, IIngredient ingredient, int energy);
<recipetype:thermal:stirling_fuel>.addFuel("stirling_test", <item:minecraft:dirt>, 1000);
Remove Fuel
Link to remove-fuel
The following script will remove Coal Blocks as a Fuel.
ZenScript Copy// <recipetype:thermal:stirling_fuel>.removeFuel(IItemStack outputItem);
<recipetype:thermal:stirling_fuel>.removeFuel(<item:minecraft:coal_block>);