#Create Mixing

35 messages · Page 1 of 1 (latest)

tranquil egret
#

im tryna add a create mixing recipe and failing, the issue is probably obvious to anyone with literally any experience

ServerEvents.recipes( event => {
    event.recipes.createMixing[
        'minecraft:carrot',
        Fluid.of('kubejs:gold', 250)
    ]
})
spring flint
#

I think that should be either:

event.createMixing // as an alias

or

event.recipes.create.mixing // full
cloud pagoda
#

And if both of them don't work

twin iceBOT
#

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

cloud pagoda
#

Then send logs

tiny hamletBOT
#

Please send your KubeJS server log. It can be found at /minecraft/logs/kubejs/server.log.
If you are on 1.18 or 1.16 it will be called server.txt.
Please send the file directly, without links or snippets.

cloud pagoda
tranquil egret
#

yup

tranquil egret
tiny hamletBOT
#

Paste version of server.log from @tranquil egret

cloud pagoda
#

What do you mean by doesn't work?

#

Does it not show up in JEI?

tranquil egret
#

it wont mix and there is no jei

cloud pagoda
#

Oh wait I see the issue

tranquil egret
#

nothing in jei i mean

#

i have jei

cloud pagoda
#

You're using square brackets

tranquil egret
#

h

cloud pagoda
#

And you have no result

tranquil egret
#

Ah.

tiny hamletBOT
#

KubeJS Create is an addon that will allow you to use KJS scripts with Create more easily.

cloud pagoda
#

Look at the wiki there

spring flint
#
ServerEvents.recipes( event => {
    event.recipes.create.mixing(
        ['minecraft:carrot'],
        [Fluid.of('kubejs:gold', 250)]
    )
})
cloud pagoda
#

Well it does

spring flint
#

250 mB of Gold into a Carrot

cloud pagoda
#

But I'm assuming they aren't trying to make carrots from gold

spring flint
#

Yeah

cloud pagoda
#

I'm assuming they want golden carrots

tranquil egret
#

yeah golden carrots

cloud pagoda
#

Yeah you haven't specified that anywhere

spring flint
#

In that case, you should get a result as the first parameter

#
ServerEvents.recipes( event => {
    event.recipes.create.mixing(
        ['minecraft:golden_carrot'],
        ['minecraft:carrot', Fluid.of('kubejs:gold', 250)]
    )
})
tranquil egret
#

i did specify it a while ago but then i rewrote the code a billion times and forgot the result 😭

tranquil egret