#Help with a custom Recipe
4 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
Help with a custom Recipe
you can do something like that using event.custom(<json>)
ServerEvents.recipes(event => {
event.custom({
"type": "create_mechanical_extruder:extruding",
"ingredients": [
{
"item": "minecraft:stone"
},
{
"fluid": "minecraft:lava",
"amount": 1000
}
],
"result": {
"item": "create:limestone"
}
})
})