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

Rune Altar

The RuneAltar package is used for adding or removing recipes to/from the Botania Rune Altar.

Calling

You can call the RuneAltar package using mods.botania.RuneAltar

Find all registered Recipes

You can find all registered Rune Altar recipes using /ct botania altar.

Recipe addition

script.zs
//mods.botania.RuneAltar.addRecipe(IItemStack output, IIngredient[] input, int mana);
mods.botania.RuneAltar.addRecipe(<minecraft:planks>,[<minecraft:grass>, <minecraft:dirt>], 200);

Recipe removal

script.zs
//mods.botania.RuneAltar.removeRecipe(IIngredient output);
mods.botania.RuneAltar.removeRecipe(<Botania:rune>);