-
Notifications
You must be signed in to change notification settings - Fork 29
Combination Crafting
BlakeBr0 edited this page Aug 30, 2017
·
11 revisions
mods.extendedcrafting.CombinationCrafting.addRecipe(output, rfCost, rfRate, input, [pedestalItem, pedestalItem]);
output = the item the recipe is for
rfCost = the amount of RF required to craft this recipe
rfRate = (OPTIONAL) the rate the recipe should take RF. rfCost/rfRate = the number of ticks required to craft the recipe. If this isn't defined it will use the default value defined in the configuration file
input = the input item that will go in the middle on the crafting core
pedestalItems = an array of items that are required to be on pedestals for the recipe. You can have anywhere from 0-48 of them
mods.extendedcrafting.CombinationCrafting.addRecipe(<minecraft:stick> * 10, 10000, 100, <minecraft:diamond>, [<ore:ingotIron>, <minecraft:stick>]);