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

Chemical Combiner

Package

script.zs
mods.alchemistry.Combiner

Methods

Addition

script.zs
mods.alchemistry.Combiner.addRecipe(IItemStack output, IItemstack[] input);
mods.alchemistry.Combiner.addRecipe(<minecraft:redstone>,
[<alchemistry:element:5>,<alchemistry:element:5>,null,
<alchemistry:element:5>]);

Removal

script.zs
mods.alchemistry.Combiner.removeRecipe(IItemStack output);
mods.alchemistry.Combiner.removeRecipe(<minecraft:gold_ingot>);
mods.alchemistry.Combiner.removeAllRecipes();

Game Stages Integration

New Recipes

script.zs
mods.alchemistry.Combiner.addStagedRecipe(IItemStack output, IItemstack[] input, String stage);

Existing Recipe

script.zs
mods.alchemistry.Combiner.setAsStaged(IItemStack output, String stage);