#Create Custom Mixing Recipe how to make it heated/superheated

7 messages · Page 1 of 1 (latest)

candid spindle
#

This is the current working script I made, the only thing is missing is how to make the recipe heated/super-heated.

    type: "create:mixing",
    ingredients: [
        {
            item:"create:cinder_flour"
        },
        {
            item:"create:powdered_obsidian"
        },

    ],
    results: [
        {

            item: "minecraft:ancient_debris",
        },
        
    ],
royal dustBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

worn thunderBOT
#

You can write your code in a codeblock by typing it between the codeblock delimiters:
Note that these are backticks, not apostrophes

```js :arrow_left:

ServerEvents.recipes(event => {
event.smelting('minecraft:glass', '#forge:sand').xp(.1)
})

``` :arrow_left:

This example will look like this:

ServerEvents.recipes(event => {
  event.smelting('minecraft:glass', '#forge:sand').xp(.1)
})
jolly flume
#

if youre using custom recipes, look at how the mod does it

worn thunderBOT
#

You can add, remove, and modify recipes with KubeJS. The wiki has a page on that!
If you want to learn how to add recipes to any mod, click the Custom button.

jolly flume
#

on the custom page you can see how to find the recipes

candid spindle
#

Thanks! fixed it, for anyone curious this is the final code 🙂

ServerEvents.recipes(event => {
event.custom({
type: "create:mixing",

   ingredients: [
     {
           item:"create:cinder_flour"
       },
       {
           item:"create:powdered_obsidian"
        },

    ],
   results: [
       {
           item: "minecraft:ancient_debris",
       },
        
],

   heatRequirement: "superheated"

});

})