Skip to content

Fornax Universi

cu5tmtp edited this page Aug 7, 2026 · 8 revisions

How to automate the repair

This is easily done with Super Factory Manager.

1) Super Factory Manager

a) Place redstone infront of the controller, then place Factory Manager next to the redstone. Place a chest infront of the Repair Part Input.
image
b) Connect Interfaces with Fancy Invetory Cables.
image
c) Make a Factory Manager Program disk and copy this following code:

NAME "selector"

EVERY 30 TICKS DO

    if redstone eq 5 then
        INPUT 1 FROM a
        OUTPUT TO d
    end

    if redstone eq 10 then
        INPUT 1 FROM b
        OUTPUT TO d
    end

    if redstone eq 15 then
        INPUT 1 FROM c
        OUTPUT TO d
    end

END

Code explanation: It tries to extract items from the "a, b, c" Interface every 30 ticks, and insert it into the "d" chest. This only happens if the redstone power is higher than 5.
e) Put the disk in the Factory Manager, and make a Label Gun.
f) Rightclick with the label gun, and in the box write "a", then press enter and do the same with "b", "c", "d".
g) Select a, rightclick Interface, then rightclick in the air (do the b and c too), select d, and rightclick on the chest.
h) Rightclick on the Factory Manager and everything should be working. Remember, Interface a needs to have Server Rack, b Rocket Cone and c Quantum Accelerator!

How to add recipes to Fornax Universi

No special syntax needed.

    event.recipes.gtceu.fornax_universi_acceleration("fornax2")
        .itemInputs(
            '4x avaritia:infinity_catalyst',
            '64x gtceu:neutronium_block',
            '64x avaritia:crystal_matrix',
            '64x gtceu:mellodium_block',
            '32x gtceu:prismalium_block',
            '16x gtceu:stellarium_block'
        )
        .itemOutputs(
            'avaritia:infinity_ingot'
        )
        .duration(600)
        .EUt(GTValues.VA[GTValues.UEV])

Clone this wiki locally