#KJS Create - Multiple Item Output Display in Jei - Assembly

5 messages · Page 1 of 1 (latest)

thin pivot
#

Hello guys, is there a way to display more than one item output in JEI using Sequenced Assembly?

I am doing a salvaging Circuit Scrap recipe, where each Circuit Scrap has a chance to become an AE2 Press.

It's already functional, but when I use r for presses that aren't the first one defined, they don't display the same recipe.

let circuitScrap = 'kubejs:circuit_scrap'
    event.recipes.createSequencedAssembly([
            Item.of('ae2:silicon_press').withChance(2.0),
            Item.of('ae2:engineering_processor_press').withChance(2.0),
            Item.of('ae2:logic_processor_press').withChance(2.0),
            Item.of('ae2:calculation_processor_press').withChance(2.0),
            Item.of('9x kubejs:tiny_circuit_scrap').withChance(8.0),
            Item.of('4x kubejs:tiny_circuit_scrap').withChance(10.0),
            Item.of('2x kubejs:tiny_circuit_scrap').withChance(10.0)
        ],'kubejs:circuit_scrap', [
            event.recipes.createPressing(circuitScrap, circuitScrap)
        ]).transitionalItem(circuitScrap).loops(32)
sterile lodgeBOT
#

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

thin pivot
#

KJS Create - Multiple Item Output Display in Jei - Assembly

forest forum
#

This is just how to recipe type works. the first output is the main output and all other outputs are considered "scrap". There's probably no way to change this. What I would recommend is to make 4 recipes each requiring another additional input.