CustomRecipes
PluginMIT

CustomRecipes

CustomRecipes adds CustomRecipes

120
Downloads
0
Followers
7 months ago
Updated
📦
3
Versions

📖About CustomRecipes

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.


Features

  • Simple Configuration: Add and manage all your recipes directly in a clean config.yml file.
  • Shaped Recipes: Create any type of shaped recipe.
  • Custom Results: Define the output material and amount for each recipe. Want to craft 64 diamonds from a single emerald? You can!
  • Lightweight & Efficient: Designed for performance, with minimal impact on your server.
  • No Dependencies: This plugin works out of the box. Testen on the version 1.21.8 paper.

How to Use

  1. Download the plugin and place it in your server's plugins folder.
  2. Start your server to generate the default config.yml file.
  3. Stop your server and open the plugins/CustomRecipes/config.yml file.
  4. Add your custom recipes following the examples provided.
  5. Save the file and start your server again. Your new recipes are now active!

You can also use the /reload command in the console to apply changes without restarting the entire server.


Configuration (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.