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

Grindstone

Importing

script.zs
import mods.appliedenergistics2.Grinder;

Adding

script.zs
Grinder.addRecipe(IItemStack output, IItemStack input, int turns, @Optional IItemStack secondary1Output, @Optional float secondary1Chance, @Optional IItemStack secondary2Output, @Optional float secondary2Chance);
Grinder.addRecipe(<minecraft:sapling>, <minecraft:leaves>, 4, <minecraft:sapling:5>, 0.3);

Removing

script.zs
Grinder.removeRecipe(IItemStack input);
Grinder.removeRecipe(<minecraft:quartz_ore>);