126 lines
4.9 KiB
INI
126 lines
4.9 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 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)
|
|
I:compactingCellUpgradeSlots=4
|
|
|
|
# Maximum essentia types for configurable essentia storage cells (1-16384)
|
|
I:configurableCellEssentiaMaxTypes=63
|
|
|
|
# Maximum fluid types for configurable fluid storage cells (1-16384)
|
|
I:configurableCellFluidMaxTypes=63
|
|
|
|
# Maximum gas types for configurable gas storage cells (1-16384)
|
|
I:configurableCellGasMaxTypes=63
|
|
|
|
# Maximum item types for configurable item storage cells (1-16384)
|
|
I:configurableCellItemMaxTypes=63
|
|
I:configurableCellMaxTypes=63
|
|
|
|
# Number of upgrade slots for configurable cells (1-16)
|
|
I:configurableCellUpgradeSlots=4
|
|
|
|
# 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)
|
|
I:hdCompactingCellUpgradeSlots=4
|
|
|
|
# Number of upgrade slots for hyper-density fluid cells (1-16)
|
|
I:hdFluidCellUpgradeSlots=4
|
|
|
|
# Maximum item types for hyper-density fluid storage cells (1-16384)
|
|
I:hdFluidMaxTypes=63
|
|
|
|
# Number of upgrade slots for hyper-density item cells (1-16)
|
|
I:hdItemCellUpgradeSlots=4
|
|
|
|
# Maximum item types for hyper-density item storage cells (1-16384)
|
|
I:hdItemMaxTypes=63
|
|
|
|
# NBT size warning threshold in KB. Tooltip shows warning when cell NBT exceeds this.
|
|
I:nbtSizeWarningThresholdKB=100
|
|
}
|
|
|
|
|
|
##########################################################################################################
|
|
# idle_drain
|
|
#--------------------------------------------------------------------------------------------------------#
|
|
# Idle power drain settings (AE power per tick). Higher values = more power consumption.
|
|
##########################################################################################################
|
|
|
|
idle_drain {
|
|
# Idle drain for compacting cells
|
|
D:compactingIdleDrain=6.0
|
|
|
|
# Idle drain for configurable cells
|
|
D:configurableCellIdleDrain=3.0
|
|
|
|
# Idle drain for fluid hyper-density cells
|
|
D:fluidHdIdleDrain=10.0
|
|
|
|
# Idle drain for hyper-density compacting cells
|
|
D:hdCompactingIdleDrain=20.0
|
|
|
|
# Idle drain for hyper-density cells
|
|
D:hdIdleDrain=10.0
|
|
}
|
|
|
|
|
|
##########################################################################################################
|
|
# interfaces
|
|
#--------------------------------------------------------------------------------------------------------#
|
|
# Settings for resource interfaces (Fluid, Gas, Essentia, Item import/export interfaces).
|
|
##########################################################################################################
|
|
|
|
interfaces {
|
|
# 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.
|
|
I:interfaceMinPollingRate=0
|
|
}
|
|
|