Skip to content

Pressure Chamber

cu5tmtp edited this page Aug 7, 2026 · 5 revisions

How to automate pressure

This is very similar to Enhanced Fusion Reactor, I'm gonna use the same setup in this guide.

1) Redstone

a) To start off, we place Comparator so it reads the signal from the controller.
image
Next, we place Potentiometer next to the Comparator, and right click it until it says 4 in the chat (my glass is only tempered).
image
c) Bring your AE2 connection near, and place a Interface that can access Steam. Next, place a Pipez pipe directly above the redstone torch and give it a Iron Upgrade. Set it to OFF when powered.
image e) Done! You probably will have to fiddle with the correct ratios, but you will be fine.

2) Super Factory Manager

a) Place redstone coming out of the controller straight into Factory Manager
image
b) Make a connection with Fancy Inventory Cables that connects the Factory Manager, Interface and EnderIO Fluid Tank
image
c) Set the output of Steam in interface to 1B.
d) Make a Factory Manager Program disk and copy this following code:

name "movefluid"

every 20 ticks do
    if redstone lt 4 then
        INPUT 1000 fluid:: FROM a
        OUTPUT fluid:: TO b
    end
end

Code explanation: It extracts 1000mb from the "a" tank every 20 ticks, and inserts it into the "b" tank. You have to set the correct redstone power you want, 4 is for tempered, 8 for laminated, 14 for fusion. 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 "b" , then press enter again.
g) Select a, rightclick Interface, then rightclick in the air, select b, and rightclick on the EnderIO tank.
h) Rightclick on the Factory Manager and everything should be working.

How to add recipes to PR

Everything is the same as adding normal GT recipes, but at the end, you have to add .addData('pa', X), and the X is a integer within 1-99.

    event.recipes.gtceu.pressuring()
        .itemInputs(
            '6x minecraft:blaze_powder',
            '2x gregecore:plutonium_hexafluoride_dust',
            '2x gtceu:uranium_dust',
            '4x gtceu:chromium_dust'
        )
        .itemOutputs(
            '18x gtceu:pyrostellit_dust'
        )
        .duration(400)
        .addData('pa', 15)

Clone this wiki locally