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

Crucible

The crucible package is used for adding or removing recipes to/from the Crucible.

Calling

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

Recipe Addition

script.zs
//mods.skyresources.crucible.addRecipe(ILiquidStack output, IItemStack input);
mods.skyresources.crucible.addRecipe(<liquid:lava> * 500, <minecraft:cobblestone>);

Recipe Removal

script.zs
//mods.skyresources.crucible.removeRecipe(ILiquidStack output);
mods.skyresources.crucible.removeRecipe(<liquid:lava>);