Files
2026-06-30 13:55:17 -05:00

217 lines
7.7 KiB
INI

# Configuration file
##########################################################################################################
# cells
#--------------------------------------------------------------------------------------------------------#
# Misc settings for cells.
##########################################################################################################
cells {
# Enable the fix for the Essentia Creative Cell that makes it report only Max Int instead of Max Long / 2. This prevents deltas from overflowing and not reporting the right amounts. Disable this config if Thaumic Energistics support long in your version.
B:enableEssentiaCreativeCellFix=true
}
##########################################################################################################
# enabled_cells
#--------------------------------------------------------------------------------------------------------#
# Enable or disable specific cell types. Disabled cells will not be registered.
##########################################################################################################
enabled_cells {
# Enable compacting storage cells
B:enableCompactingCells=true
# Enable configurable storage cells
B:enableConfigurableCells=true
# Enable fluid hyper-density storage cells
B:enableFluidHDCells=true
# Enable hyper-density storage cells
B:enableHDCells=true
# Enable hyper-density compacting storage cells
B:enableHDCompactingCells=true
}
##########################################################################################################
# general
#--------------------------------------------------------------------------------------------------------#
# General settings for cell behavior
##########################################################################################################
general {
# Number of upgrade slots for compacting cells (1-16)
# Min: 1
# Max: 16
I:compactingCellUpgradeSlots=4
# Maximum essentia types for configurable essentia storage cells (1-16384)
# Min: 1
# Max: 16384
I:configurableCellEssentiaMaxTypes=63
# Maximum fluid types for configurable fluid storage cells (1-16384)
# Min: 1
# Max: 16384
I:configurableCellFluidMaxTypes=63
# Maximum gas types for configurable gas storage cells (1-16384)
# Min: 1
# Max: 16384
I:configurableCellGasMaxTypes=63
# Maximum item types for configurable item storage cells (1-16384)
# Min: 1
# Max: 16384
I:configurableCellItemMaxTypes=63
I:configurableCellMaxTypes=63
# Number of upgrade slots for configurable cells (1-16)
# Min: 1
# Max: 16
I:configurableCellUpgradeSlots=4
# Unlocked partition slots for EMC cell tiers. Index 0 is the base cell with no upgrade installed. Each following entry unlocks slots for emc_upgrade_1, emc_upgrade_2, and so on.
I:emcCellPartitionSlots <
1
9
54
>
# Reported stack size for learned EMC cell filters. Use a positive non-zero number up to Long.MAX_VALUE. Invalid values fall back to the default.
S:emcCellReportedAmount=2147483647
# Server tick interval between EMC cell buffer flushes to player EMC (1-72000)
# Min: 1
# Max: 72000
I:emcCellSyncIntervalTicks=20
# Enable NBT size computation and display in cell tooltips. Disable for performance.
B:enableNbtSizeTooltip=true
# Number of upgrade slots for hyper-density compacting cells (1-16)
# Min: 1
# Max: 16
I:hdCompactingCellUpgradeSlots=4
# Number of upgrade slots for hyper-density fluid cells (1-16)
# Min: 1
# Max: 16
I:hdFluidCellUpgradeSlots=4
# Maximum item types for hyper-density fluid storage cells (1-16384)
# Min: 1
# Max: 16384
I:hdFluidMaxTypes=63
# Number of upgrade slots for hyper-density item cells (1-16)
# Min: 1
# Max: 16
I:hdItemCellUpgradeSlots=4
# Maximum item types for hyper-density item storage cells (1-16384)
# Min: 1
# Max: 16384
I:hdItemMaxTypes=63
# NBT size warning threshold in KB. Tooltip shows warning when cell NBT exceeds this.
# Min: 1
# Max: 10000
I:nbtSizeWarningThresholdKB=100
# Maximum tick rate for the Subnet Proxy in ticks (idle interval). This is the slowest the proxy will poll when no changes are detected.
# Min: 1
# Max: 1200
I:subnetProxyMaxTickRate=60
# Minimum tick rate for the Subnet Proxy in ticks (lower = more responsive, higher = less CPU). This is the fastest the proxy will poll for changes.
# Min: 1
# Max: 200
I:subnetProxyMinTickRate=5
# Enable Subnet Proxy extraction-fault reporting and warning logs. A reported fault can originate from the proxy, a connected inventory, or the network itself.
B:subnetProxyReportExtractionFaults=false
# Number of upgrade slots for the Subnet Proxy (1-24)
# Min: 1
# Max: 24
I:subnetProxyUpgradeSlots=5
}
##########################################################################################################
# hidden
#--------------------------------------------------------------------------------------------------------#
# Hidden client preferences.
##########################################################################################################
hidden {
B:jeiTransferInputsToExport=true
B:jeiTransferOutputsToCreativeCell=true
B:showControlsHelp=false
}
##########################################################################################################
# idle_drain
#--------------------------------------------------------------------------------------------------------#
# Idle power drain settings (AE power per tick). Higher values = more power consumption.
##########################################################################################################
idle_drain {
# Idle drain for compacting cells
# Min: 0.0
# Max: 100.0
D:compactingIdleDrain=6.0
# Idle drain for configurable cells
# Min: 0.0
# Max: 100.0
D:configurableCellIdleDrain=3.0
# Idle drain for fluid hyper-density cells
# Min: 0.0
# Max: 100.0
D:fluidHdIdleDrain=10.0
# Idle drain for hyper-density compacting cells
# Min: 0.0
# Max: 100.0
D:hdCompactingIdleDrain=20.0
# Idle drain for hyper-density cells
# Min: 0.0
# Max: 100.0
D:hdIdleDrain=10.0
}
##########################################################################################################
# interfaces
#--------------------------------------------------------------------------------------------------------#
# Settings for resource interfaces (Fluid, Gas, Essentia, Item import/export interfaces).
##########################################################################################################
interfaces {
# List of tile entity registry IDs that the Essentia Interface should ignore. Blacklisted tile entities will not be detected as adjacent essentia containers, preventing both push and pull operations. Use F3 or a mod like WAILA/TOP to find the tile entity ID (e.g. "thaumcraft:thaumatorium").
S:essentiaContainerBlacklist <
thaumadditions:jar_mithminite
>
# Maximum slot size limit for interfaces. Caps the user-configurable max slot size per slot. Use -1 for unlimited (Long.MAX_VALUE).
S:interfaceMaxSlotSizeLimit=9223372036854775807
# Minimum polling rate for interfaces in ticks. 0 allows adaptive (AE2-managed tick rates). Higher values force interfaces to poll at least this often, reducing responsiveness but saving performance.
# Min: 0
# Max: 2147483647
I:interfaceMinPollingRate=0
# Use fixed (non-animated) textures for interface blocks and parts. Requires a game restart to take effect.
B:useFixedInterfaceTextures=true
}