Skip to content

Ender Crafting

BlakeBr0 edited this page Apr 14, 2020 · 3 revisions

These docs are for version 1.x! Head here for the version 2.x+ docs.

CraftTweaker Syntax

Adding a new shaped recipe:

 mods.extendedcrafting.EnderCrafting.addShaped(<output>, [[<>, <>, <>], [<>, <>, <>], [<>, <>, <>]], seconds);  

output = the item the recipe creates

<> = an input stack for the slot shown

seconds = (optional) the amount of seconds this recipe should take, leaving this out defaults to the config value

The input arrays work in the same way as the normal crafting recipes, check out the MineTweaker wiki for more information.

Adding a new shapeless recipe:

 mods.extendedcrafting.EnderCrafting.addShapeless(<output>, [<input>, <input>, seconds]); 

output = the item the recipe creates

input = an array of items required to make the recipe. You can have up to 9 items

seconds = (optional) the amount of seconds this recipe should take, leaving this out defaults to the config value

Removing recipes:

 mods.extendedcrafting.EnderCrafting.remove(<output>);

output = the item of which you want their recipes removed

Clone this wiki locally