This mod requires Minecraft Forge
Place this zip file into .minecraft/mods.
What does it do?
How to get Recipe Files
Recipe files can be found in:
You can...
You can't...
Writing new recipes
There are 4 available recipe types:
The recipe file can also contain:
Recipes can be saved in any text files in .minecraft/mods/customrecipes.
You can also use comments to make the code cleaner.
Recipe syntax - how to make a recipe
General notice: To get modded blocks, simply use their id like this: *pipe=185, and then use keyword pipe. For items, you must add 256 to the item id, if its 5000 in property file, use *explosiveEgg=5256.
shaped ( name,m + name,m + name,m / name,m + ... ) > ( name,count,m )
meta and count are optional.
Shaped recipe consist of recipe (left) and result (right).
name = Block or item name (defined in the dictionary), or number (direct ID)
m = meta / damage value. This is used, for example, to determine leaves, wool and dye colour.
count = number of items produced, default is 1.
Recipe rows (the name+name+name pieces) are divided by either ; , | or /.
All rows must have the same size.
Use "null" , "none" , "air" or "nothing" in empty slots.
shapeless ( name,m + name,m + name,m ... ) > ( name,count,m )
meta and count are optional.
Shapeless recipe has only one "row", with up to 9 items.
smelting ( name ) > ( name,count,m )
meta and count are optional.
Smelting recipe can have only one item on left, and can't specify it's meta.
fuel ( name, burn_time )
fuel ( name, meta, burn_time )
meta is optional.
Name is an alias or item ID, and burntime defines how long this item should burn.
Stick has burntime 100, planks 300, coal 1600, lavabucket 20000.
If you write some super large number here, you will have nearly infinite fuel.
*Alias=ID,meta
meta is optional.
This is an alias definition of new block or item.
Alias can contain letters, numbers and underscore. ID must be a number.
Aliases are defined in the dictionary, but you can define your own in your recipe file.
# comment, description, whatever
this also works
This is how you can make comments in your recipe files.
Comment doesn't have to start on new line, but all from the # sign till the end of line is treated as a comment.
Lazy code
For those who don't like brackets: Don't use them!
shapeless fence > stick,6
This works (or may work) too.
Example recipes
Tips
No files available for download.