Installing Mods on a 7 Days to Die Server

How to install XML modlets, Harmony mods, and overhaul mods on your 7DTD dedicated server.

7 Days to Die supports several types of mods. This guide covers how to install each type on your dedicated server.

Mod Types

TypeEAC CompatibleCrossplay CompatibleDescription
XML ModletsYesNoLightweight XPath patches to game XML files
Harmony / C# ModsNoNoCode mods using the Harmony framework
DMT ModsNoNoCompiled mods using Dead Man's Toolkit
Overhaul ModsNoNoTotal conversion mods (Darkness Falls, Undead Legacy, etc.)

⚠️ Important: Any mod — even XML-only — disables crossplay. Mods with DLL files also require EAC to be disabled.

Installing XML Modlets

XML modlets are the simplest type and don't require disabling EAC.

  1. Download the modlet (usually a ZIP file)
  2. Stop your server
  3. In the XGamingServer Panel, click Files
  4. Navigate to the Mods folder in the server root (create it if it doesn't exist)
  5. Upload and extract the modlet folder

The correct structure is:

Mods/
  MyModlet/
    ModInfo.xml
    Config/
      (XML patch files)

⚠️ Common mistake: The folder containing ModInfo.xml must be directly inside Mods/. Nested folders like Mods/Download/MyModlet/ModInfo.xml will not load.

  1. Start your server
  2. Verify in the console — look for Loaded Mod: MyModlet or run the version command

Installing Harmony / C# Mods

These mods include .dll files and require EAC to be disabled.

  1. In serverconfig.xml, disable EAC:
<property name="EACEnabled" value="false" />
  1. Download and extract the mod
  2. Upload to Mods/ with the same structure as XML modlets
  3. The mod folder will also contain a Harmony/ subfolder with C# scripts
  4. Restart your server

📝 Note: The 0_TFP_Harmony folder in Mods/ is a vanilla game folder — do not delete it.

Installing Overhaul Mods

Overhaul mods (Darkness Falls, Undead Legacy, Ravenhearst, etc.) are large total-conversion mods.

  1. Disable EAC in serverconfig.xml
  2. Follow the specific mod's installation guide — each overhaul has its own process
  3. Upload all mod files to the server
  4. All players must install the same mod locally — client and server must match exactly
  5. Restart the server

Do Players Need the Same Mods?

Mod TypePlayers Need It?
XML modlets (server-side balance changes)Usually no — server pushes data
XML modlets (new items/blocks/recipes)Yes
Harmony / C# modsYes
Overhaul modsYes — exact same version

Verifying Installed Mods

Run the version command in the console:

version

This lists the game version and all loaded mods.

Removing Mods

  1. Stop the server
  2. Delete the mod folder from Mods/
  3. Restart

⚠️ Warning: Removing mods that added new blocks or items may cause world corruption or missing block errors. Back up your save before removing mods.

How is this guide?

40% Off — Limited TimeGet your 7 Days to Die server todayInstant setup, DDoS protection, and 24/7 support included.
Get a Server

On this page