#modded fluids for create sequenced recipe

15 messages · Page 1 of 1 (latest)

steep jasper
#

event.recipes.createFilling('kubejs:zaza', ['kubejs:zaza', Fluid.water(10)]),

instead
i want to use

'createfood:sugar_cane_juice)', 100)]),

i tried Fluid.of('createfood:sugar_cane_juice)', 100)]), didnt work

hidden creekBOT
#

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

celest mulch
#
    event.recipes.createFilling(
        "minecraft:diamond", //result
        [
            "minecraft:diamond_block", //input item
            Fluid.of("create:chocolate", 100) //input fluid
        ]
    )
#

So it should be in your case

    event.recipes.createFilling(
        'kubejs:zaza', //result
        [
            'kubejs:zaza', //input item
            Fluid.of("createfood:sugar_cane_juice", 100) //input fluid
        ]
    )
steep jasper
#

ohh

#

" not '

celest mulch
#

no, that's not the issue

steep jasper
#

event.recipes.createFilling('kubejs:zaza', ['kubejs:zaza', Fluid.of('sugar_cane_juice', 100)]),

#

this rn doesnt work

#

wait

#

forgot i remvoed the

#

mod id

#

😭

celest mulch
#
Fluid.of('createfood:sugar_cane_juice)', 100)

The issue with it is an extra ) in the fluid id.

steep jasper
#

ty