CustomRecipes adds CustomRecipes
Easily define and add custom crafting recipes to your Paper server with CustomRecipes! This lightweight plugin gives you full control over your server's crafting system through a simple and intuitive configuration file.
Forget about editing plugin code or recompiling JARs. Simply open the config.yml, define your new recipes, and reload the server. It's the perfect tool for server owners who want to customize the crafting experience without the hassle.
config.yml file.plugins folder.config.yml file.plugins/CustomRecipes/config.yml file.You can also use the /reload command in the console to apply changes without restarting the entire server.
config.yml example)Below is an example of a simple recipe configuration. You can add as many recipes as you like under the recipes: section.
recipes:
# Enchanted Golden Apple
enchanted_golden_apple:
shape:
- "GGG"
- "GAG"
- "GGG"
ingredients:
G: GOLD_BLOCK
A: APPLE
result:
material: ENCHANTED_GOLDEN_APPLE
amount: 1
# example for another recipe.
custom_diamond:
shape:
- "GGG"
- "GEG"
- "GGG"
ingredients:
G: GOLD_INGOT
E: EMERALD
result:
material: DIAMOND
amount: 16
#if there should be more recipes just copy one from top and paste it down here. then edit it.