7 Days to Die how to install mods

From Citadel Servers Wiki
Jump to navigation Jump to search


This guide will show you how to add xml mods.


On your Game Control Panel, locate File Manager and click it then navigate to Data\Config.

Within this config folder is a series of .xml files that have to edit to add XML mods.

In this example I will use the items.xml but the basic rule applies for all the files.

1. Copy the mod code provided.

<item id="1972" name="lokiStew">
   <property name="Extends" value="meatStew" />
   <property name="CustomIcon" value="meatStew" />
   <property class="Action1">
      <property name="Gain_food" value="40" />
   </property>
</item>

2. Open the relevant xml that corresponds to the code. In this case it is the items.xml file.

3. Go to the bottom of the file and paste the copied code ABOVE the </items> line that is at the bottom of the file. Always keep the </items> line at the bottom of the file. Not to be confused with </item>.

4. Ensure the item ID used by the copied code is not being used by any other item unless the mod specifically wants you to replace a vanilla. It must have a unique ID number assigned to it.

These rules are near identical for any mod code you add.