#Create: manual item application help
15 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
dont beat me pls
WIP
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
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
try it with this:
event.remove({ id: 'createnuclear:item_application/reactor_casing_from_steel_and_brass_casing' })