#Create: manual item application help

15 messages · Page 1 of 1 (latest)

gaunt quartz
#

i didnt see on create kubejs wiki server event on right clicking on item and then turn into other
maybe i dumb

dark bridgeBOT
#

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

gaunt quartz
#

dont beat me pls

tranquil lindenBOT
#

WIP

tender nest
#

it should looks like this:

ServerEvents.recipes((event) => {
  //item_application(output, input[])
  event.recipes.create.item_application("mekanism:steel_casing", [
    "create:andesite_casing",
    "mekanism:ingot_steel",
  ]);
});

in this example i make a mekanism steel casing from andesite casing and a steel ingot from mekanism

#

but only if you use the addon kubejs create

gaunt quartz
#

yo

#

thx

#

let me try

#

its works

#

btw @tender nest srry for ping but i dont know how its works

ServerEvents.recipes(event => {
    // TFMG & Create: nuclear

    event.remove({ id: 'createnuclear:item_application/reactor_casing_from_steel_and_brass_casing_using_deployer' })
    event.recipes.create.deploying('createnuclear:reactor_casing', ['tfmg:heavy_machinery_casing', 'tfmg:steel_ingot'])
    event.recipes.create.item_application('createnuclear:reactor_casing', [
        'tfmg:heavy_machinery_casing',
        'tfmg:steel_ingot',
      ]);
  })

do u know why remove event doenst work?

#

Already thx

tender nest
#

try it with this:

event.remove({ id: 'createnuclear:item_application/reactor_casing_from_steel_and_brass_casing' })
gaunt quartz
#

its work

#

but what u change