โ๏ธ GregTech Nexus Addon
The Nexus of Steam & Steel โ A deep expansion for GregTech CEu Modern that reinvents how you generate power, process materials, and scale your factories. From primitive steam to cosmic technology.
๐ฆ Requirements
| Dependency |
Version |
| Minecraft |
1.20.1 (Forge) |
| GregTech CEu Modern |
7.5.x |
| Applied Energistics 2 |
Required |
| ExtendedAE |
Required |
๐ What is GregTech Nexus Addon?
GregTech Nexus Addon (GTNA) is a feature-rich addon for GTCEu Modern that adds a full progression layer on top of the base mod. It introduces wireless steam and energy networks, 12+ multiblocks, custom hatches with unique mechanics, exclusive materials, and a developer API compatible with KubeJS and the GTCEu Java API.
Whether you're building a megafactory powered entirely by solar steam, automating parallel recipes across dozens of machines, or scripting entirely custom multiblocks through KubeJS โ GTNA has the tools.
๐ก Wireless Steam Network
Say goodbye to spaghetti pipe networks. GTNA's Wireless Steam Network lets you transmit steam across your entire base without a single pipe connecting boilers to machines.
- Wireless Input/Output Hatches link machines to the steam network
- Huge Steam Buses for mass item throughput
- Full integration with AE2 autocrafting pipelines
- Works seamlessly alongside GTCEu's native steam machines
๐ Documentation โ
โก Nexus Flux Matrix โ Wireless Energy (v0.2)
The Nexus Flux Matrix is a massive, scalable multiblock that acts as the central energy bank for your entire factory โ no cables needed.
- Size: 3ร7ร7 (min) up to 31ร7ร7 (max), up to 750 Capacitor blocks internally
- 14 Capacitor tiers from LV (160K EU/block) up to MAX (5E EU/block)
- Quadratic capacity scaling: the more blocks, the bigger the bonus
- Efficiency from 85% (LV) to 100% (MAX)
- Transfer limit up to 500 ZEU/t
- Cross-dimension support (ZPM+)
- Safe Mode: automatically cuts output below 10%, restores at 25%
- Comes with Wireless Energy Hatches, Wireless Dynamo Hatches, Receiver/Transmitter Covers, and the Quantum Network Terminal for real-time monitoring
๐ Documentation โ
๐ญ Multiblocks
Steam Multiblocks (No electricity required)
| Machine |
Recipes |
Parallels |
Speed |
Description |
| Large Steam Furnace |
Furnace, Blast |
128 |
9x |
Industrial furnace, processes almost everything |
| Large Steam Crusher |
Macerator |
32 |
2x |
Mass ore grinding |
| Large Steam Alloy Smelter |
Alloy Smelter |
64 |
1.43x |
High-throughput alloy production |
| Mega Solar Boiler |
Special |
โ |
โ |
Infinite steam from sunlight |
| Steam Cobbler |
Rock Breaker |
16 |
1x |
Automated cobblestone/stone generation |
| Stone Superheater |
Superheater |
32 |
1x |
Melts stone into fluid |
| Steam Manufacturer |
Hydraulic |
16 |
1x |
Steam-powered assembler |
| Steam Woodcutter |
Woodcutter |
32 |
1x |
Automated wood processing |
| Void Miner (Steam Gate Aged) |
Special |
โ |
โ |
Mines ores from the void using steam |
Electric Multiblocks
| Machine |
Description |
| Industrial Slaughterhouse |
High-throughput mob processing, supports all GTNA hatches |
No-Energy Multiblocks
| Machine |
Description |
| Infernal Coke Oven |
Intensified coke production without power |
| Hyper Pressure Reactor |
High-pressure reactions via direct fuel |
| Leap Forward Blast Furnace |
Advanced blast furnace, no EU required |
๐ Full machine documentation โ
๐งต Custom Hatches & Parts
GTNA introduces a family of specialized hatches that extend GTCEu's multiblock system with brand-new mechanics:
Thread Hatch โ Allows a multiblock to run completely different recipes simultaneously. Recipe A and Recipe B can process at the same time in the same machine.
Accelerate Hatch โ Reduces recipe duration (ticks) directly, without increasing energy consumption per tick.
Overclock Hatch โ Applies extreme overclock multipliers on top of GTCEu's standard electrical tier overclocking.
Advanced Parallel Hatch โ Scales parallels far beyond what the standard hatch allows.
Wireless Steam Hatches โ Connect any steam multiblock to the wireless steam network.
Huge Steam Buses โ Massive item input/output for high-throughput steam setups.
๐ Hatches documentation โ
๐งช Custom Materials
GTNA adds unique alloys, elements, and fluids with real roles in the tech progression:
- Stronze โ Early-game structural alloy
- Breel โ Mid-tier conductor material
- Echoite โ Resonance-based exotic element
- Supercritical Steam variants โ High-efficiency power fluid
- Additional custom elements and compounds across all tiers
๐ Materials documentation โ
๐ง Hydraulic System
A pressurized fluid processing system built around the Steam Manufacturer. Enables steam-era assembly-style crafting for modpack progression without requiring electricity.
๐ Hydraulic System โ
๐ KubeJS Integration (v0.2)
Starting with version 0.2.0, GTNA provides full KubeJS compatibility via soft-dependency. Modpack developers can create advanced multiblocks using all GTNA custom hatches directly from scripts โ no Java required.
GTCEuStartupEvents.registry('gtceu:machine', event => {
event.create('my_machine', 'gtna:multiple_recipes')
.recipeType('gtceu:assembler')
.pattern(definition => FactoryBlockPattern.start()
// ...
.or(Predicates.abilities(GTNAPartAbility.THREAD_HATCH).setMaxGlobalLimited(1))
.or(Predicates.abilities(GTNAPartAbility.ACCELERATE_HATCH).setMaxGlobalLimited(1))
.or(Predicates.abilities(GTNAPartAbility.OVERCLOCK_HATCH).setMaxGlobalLimited(1))
)
.gtnaConfig(config => {
config.maxThreadMultiplier(2)
config.overclockBonus(0.1)
})
})
The gtna:multiple_recipes factory type automatically wires up WorkableElectricMultipleRecipesMachine under the hood โ Thread, Accelerate, and Overclock Hatches work out of the box.
๐ KubeJS API docs โ
๐ ๏ธ Java API
GTNA exposes a full Java API for addon developers:
- Create multiblocks that natively support all GTNA hatches
- Register custom materials and fluids using the GTNA material builder
- Extend the wireless steam/energy systems
- Hook into Thread/Accelerate/Overclock hatch behavior
๐ API Overview โ
๐ AE2 Integration
GTNA is designed with AE2 autocrafting in mind:
- Wireless Steam Hatches work seamlessly with AE2 pattern providers
- Huge Steam Buses accept ME interface connections
- All GTNA multiblocks are fully compatible with ExtendedAE setups
- Recommended setup guides included in the wiki
๐ AE2 Tips โ
๐ Current Status โ v0.2.0
| Feature |
Status |
| Wireless Steam Network |
โ
Complete |
| Hydraulic System |
โ
Complete |
| Steam Multiblocks (9+) |
โ
Complete |
| Thread / Accelerate / Overclock Hatches |
โ
Complete |
| Advanced Parallel Hatches |
โ
Complete |
| Industrial Slaughterhouse |
โ
Complete |
| No-Energy Multiblocks |
โ
Complete |
| Void Miner (Steam) |
โ
Complete |
| KubeJS Integration |
โ
Complete (v0.1.5) |
| Nexus Flux Matrix (Wireless Energy) |
๐ In Development |
| Pattern Buffer System |
๐ฎ Planned |
| New Tiers & Alloys |
๐ฎ Planned |
๐ Quick Start
- Install the required mods: GTCEu Modern 7.5.x, AE2, and ExtendedAE
- Download GTNA from the latest release
- Drop it in your
/mods folder and launch Minecraft 1.20.1
๐ Full installation guide โ ๐ฏ First steps guide โ
๐ค Contributing
GTNA is open source and welcomes contributions. Check the GitHub repository and the contributing guide in the wiki.
GitHub โ | Wiki โ | License: LGPLv3