
The RecipeAPI is an API in MrCrayfish's Furniture Mod, which allows players and mod developers to add custom recipes to appliances in the mod. There are two ways to implement custom recipes, the first being through the configuration file (cfm.cfg) and the other being developed in a mod using the RecipeAPI jar file. If you are wanting to start adding your own custom recipes to the mod, choose a method below which suits you.
Configuration Method
This method uses the configuration file from MrCrayfish's Furniture Mod in order to parse custom recipes into the game. This method is recommended for general players who are looking to add simple recipes to appliances. You can learn more at the Configuration page.
Mod Developers Method
This method is recommended for mod developers looking to add support into MrCrayfish's Furniture Mod. Unlike the configuration method, recipes are registered through coding and doesn't require the general players that use your mod, to copy and paste lines of custom recipes into the configuration file. The hook into my MrCrayfish's Furniture Mod, a jar file is to be added to your referenced libraries in your development environment. You can learn more at the Developers page.