Mineuniverse
Log in Register
Mods

Melter Block

Turns blocks into fluids! Create mod compatibility! A fork of the mod 'melter'.
by nano_nestor
Claim this project
169,789 downloads
0 likes
Updated Jun 30, 2026
0 hypes

Melter Block

A simple melter block that turn blocks into liquid.

Wish there was an easier way to get your lava rather than scooping buckets and trudging through the snow for 5 miles before breakfast?  Are you an older MC user who misses the cobble to lava cauldrons of old days of yore?  The Melter may be your favorite new machine block!

Default recipes

  • Cobblestone >>> Lava
  • Snow >>> Water
  • Ice >>> Water
  • Honey Block >>> Honey (If mod 'Productive Bees' is loaded)

Melter Showcase

To place blocks into the Melter drop them in, or push them in using pipes from a storage location.  Holding blocks in hand to right-click-mouse insert will not work.  Only blocks with recipes can be dropped-in / inserted.

If the mod 'Create' is included then blaze burners will be available as a possible heat source.

Heat sources + Heat level

  • Torch -1
  • Soul Torch - 1
  • Campfire - 2
  • Soul Campfire - 2
  • Lava - 3
  • Blaze burner - 5 (active), 1 (fading), 0 (inactive), 8 (superheated)

Adding additional recipes


Datapack JSON example for adding melting recipes:

example - creating a JSON file with the same name as the default cobble recipe and placing it in the data location of it to overwrite the default -

data\melter\recipes\melting\cobble_melting.json

-- Example recipe basic

{
"type": "melter:melting",
"ingredient": {
"item": "minecraft:cobblestone",
"count": 1
},
"result": {
"fluid": "minecraft:lava",
"amount": 250
},
"processingTime": 500
}

-- Example recipe with optional minimum heat level required to melt

{
"type": "melter:melting",
"ingredient": {
"tag": "forge:stone",
"count": 1
},
"result": {
"fluid": "minecraft:lava",
"amount": 250
},
"processingTime": 2000,
"minimumHeat": 4
}

To introduce new recipes you can add your own JSON files to datapacks with different filenames and recipe values.


KubeJS Integration

The KubeJS mod can be used to add recipes in a simple 1 line format.

Place lines like example below (in the recipes event) of any *.js script file located in the profile\kubejs\server_scripts\ folder location - that's it!

  • See below for how to construct recipe adding script lines.
  • Note that some of the examples have an optional minimum heat level needed. The .minimumHeat is optional. Without it any heat source will work with the recipe. With it, recipe items placed will only melt if the heat level on the block is high enough.
ServerEvents.recipes((event) => {

// event.recipes.melterMelting(OUTPUT,INPUT).processingTime(INT);
// event.recipes.melterMelting(OUTPUT,INPUT).processingTime(INT).minimumHeat(INT);

event.recipes.melterMelting(Fluid.of('minecraft:water', 1000),"minecraft:ice").processingTime(200);

event.recipes.melterMelting(Fluid.of('minecraft:lava', 250),"#forge:stone").processingTime(1000).minimumHeat(4);

  });

Keep in mind that the above KubeJS examples add new recipes, not replace existing recipes.

  • If you'd like to replace an existing recipe such as the default cobble_melting.json recipe found in the melter:recipes/melting/ folder - use the following KubeJS line first to remove the original recipe, and then add your new recipe using the examples above:
event.remove({id: 'melter:melting/cobble_melting'});

(This mod is a fork of the mod 'melter' - the impetus for it's initial creation was to introduce compatibility with the newest versions of the 'create' mod 0.5.1.+)

No files available for download.

More from nano_nestor

Cursed Earth Returns
2,389,524
Sheep Consistency (Forge)
236,115

You Might Also Like

Liberty's Villagers
Quality of Life and AI improvements for Villagers
9,968,428
No More Pop-ups
A Minecraft mod to remove in-game pop-ups
996,708
BetterRandomSourceConcurrencyCrash
Improved logging of crashes caused by mods accessing RandomSources from the wrong thread
99,371
Exit Confirmation
Often accidentally closed Minecraft? This mod might help!
99,067
NoDynamicFps
Adds an option to disable Vanilla's Dynamic FPS implementation
99,004
Immersive Crafting
Adds crafting recipes to immersive portals
9,998