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

Combustion

The combustion package is used for adding or removing recipes to/from the Combustion process.

Calling

You can call the combustion package using mods.skyresources.combustion

Recipe Addition

script.zs
//mods.skyresources.combustion.addRecipe(IItemStack output, IItemStack[] input, int temperature);
mods.skyresources.combustion.addRecipe(<minecraft:diamond>, [<minecraft:dirt>, <minecraft:sand> * 2], 420);

Recipe Removal

script.zs
//mods.skyresources.combustion.removeRecipe(IItemStack output);
mods.skyresources.combustion.removeRecipe(<minecraft:diamond>);