Better Stacking Item ver 0.2.0
**Better Stacking Item**
【Key Features】
– Fully Configurable: All item stacking rules are defined via configuration files.
– Item Protection: Vanilla stacking can be restored directly through the config file. Items exceeding the custom stack limit will be sent directly to the delivery station.
– Information display: You can decide whether to display the current stack and the maximum stack of items through the configuration file
【Configuration Guide】
Configuration files are located in your game directory under:
`…Escape from DuckovModConfigsBetterStackingBetterStacking.json`
The stacking rules file is located at:
`…Escape from DuckovModConfigsBetterStackingStackingRules.csv`
A default configuration file will be automatically generated upon the mod’s first launch. You can modify it as needed.
*Important: After modifying the configuration, please go to the "Mods" menu on the game’s main screen. First uncheck this mod, then re-check it for the changes to take effect.*
Default configuration options and explanations:
`Enable: true` // When enabled, applies custom stacking rules. When disabled, restores vanilla stacking rules and automatically splits items upon entering the game.
Stacking is configured using a CSV file with the following columns:
`MatchType, MatchValue, StackType, StackValue`
MatchType: Defines the way items are matched.
"ID" : Matching through the precise ID of the item.
"Stack" : Match based on the original maximum stack number of items in the game. This method will batch match all items that match the stack number. Please use it with caution.
MatchValue: Fill in the corresponding value according to MatchType.
If MatchType is "ID", fill in the specific item ID (string).
If MatchType is "Stack", fill in an integer representing the original maximum stack number of items. For example: 64 (Note: This will match all items with an original stack count of 64.
StackType: Defines how to modify the stack count.
"Fix" : Set to a fixed stack quantity.
"Mult" : Proportional adjustment based on the original maximum stack number of items.
StackValue: Fill in the corresponding value according to StackType.
If the StackType is "Fix", fill in an integer as the new fixed stack number. For example: 16
If the StackType is "Mult", fill in a multiple (integer). The calculation will be based on the "original maximum stack count" of the items.
For example: 2.0 indicates that the stack count has become twice the original value (original 64 → modified 128).
【!!! Important Notes & Compatibility !!!】
* **Prerequisite:** The HarmonyLib mod MUST be installed, otherwise this mod will not function.
* **Potential conflicts** with other mods that alter item stacking. Ensure that simultaneously enabled mods do not modify the stacking rules for the same items.
* After modifying the configuration file, **you must** go to the "Mods" menu, uncheck this mod, and then re-check it to ensure the changes are applied.