Custom Furnace Recipes

Custom Furnace Recipes

231 Downloads

What can this plugin do for you?

This plugin allows you to create custom furnace recipes to your server, e.g. 

Iron Sword melts down to 2 Iron Ingots. All customizable with a config.

How do I add my own recipes?

With the config.yml the plugin creates for you. It's in the SalvageSmelter directory in your /plugins folder.

To add a recipe, you need 3 things. The source material (e.g. an Iron Sword), the result (e.g. Iron Ingot) and the amount of the result (e.g. 2). The time it takes to melt the material and the exp the player gets is optional.

scrapList:
- IRON_SWORD
- GOLD_SWORD
IRON_SWORD:
  result: IRON_INGOT
  amount: 2
  time: 40 // (optional) In ticks! 1 second = 20 ticks  
  exp: 5   // (optional)
GOLD_SWORD:
  result: GOLD_INGOT
  amount: 2

 If you want to add your own recipe, add the material name of your source item to the scrapList and create an entry for it. An example is listed below.

scrapList:
- IRON_SWORD
- GOLD_SWORD
- DIAMOND_CHESTPLATE
IRON_SWORD:
  result: IRON_INGOT
  amount: 2  
  time: 40 // (optional) In ticks! 1 second = 20 ticks
  exp: 5 // (optional)
GOLD_SWORD:
  result: GOLD_INGOT
  amount: 2
DIAMOND_CHESTPLATE:
  result: IRON_INGOT
  amount: 20

Tutorials

Contact

Discord: gold.ly#6685