CustomDewCollector is a mod for 7 Days to Die that empowers server admins with the ability to customize dew collector slot sizes and increase the rate at which water is collected. This makes dew collectors a more viable option in the early stages of the game, providing players with easier access to water resources.
Tested on v1.0
- Configurable Slot Sizes: Adjust the slot sizes of dew collectors to suit your server's gameplay style and balance needs.
- Enhanced Collection Rate: Increase the rate at which water is collected, making dew collectors a practical choice for early-game hydration.
-
Download the Mod:
- Go to the Releases section and download the latest ZIP file.
-
Install the Mod:
- Extract the contents of the ZIP file and place the
CustomDewCollector
folder into yourMods
directory located in the game’s root directory.
- Extract the contents of the ZIP file and place the
The config.xml
file allows you to customize the following settings:
Columns
: Defines the number of slot columns available in the dew collector.Rows
: Defines the number of slot rows available in the dew collector.
Example:
<config>
<columns>3</columns>
<rows>2</rows>
</config>
The Config/XUi/windows.xml
needs to match your config.xml
file :
Example
<config>
<set xpath="//window[@name='windowDewCollector']/rect/grid/@cols">3</set>
<set xpath="//window[@name='windowDewCollector']/rect/grid/@rows">2</set>
</config>
The Config/blocks.xml
can be used to modify the collection rate :
Example
<config>
<set xpath="/blocks/block[@name='cntDewCollector']/property[@name='MinConvertTime']/@value">1800</set>
<set xpath="/blocks/block[@name='cntDewCollector']/property[@name='MaxConvertTime']/@value">3600</set>
</config>