Skip to main content

Adding admins

7 Days to Die allows you to add admins by editing a .xml file. Finding and editing the correct file is easy. To begin, navigate to your 7 Days to Die instance, then:

CreeperPanel 7DTD Admins

  1. Ensure you have stopped your 7 Days to Die server, by clicking the power button in the top right of the Panel.
  2. Navigate to Files under the sub-menu.
  3. Navigate to the Saves folder in the directory.
  4. You will see a file named serveradmin.xml; double-click on this file to open it in a new window in the console.

CreeperPanel 7DTD Admins

  1. Now serveradmin.xml is open, scroll down until:
  2. You see the following lines. Keep an eye out for the <admins> prefix.
<admins>
<!-- <user steamID="76561198021925107" name="Hint on who this user is" permission_level="0" /> -->
<!-- <group steamID="103582791434672565" name="Steam Universe" permission_level_default="1000" permission_level_mod="0" /> -->
</admins>

CreeperPanel 7DTD Admins

  1. Now add the following line below the line that starts with <group.
<user steamID="SteamIDHere" name="SteamUserNameHere" permission_level="0" />

You will need to replace the SteamIDHere with the Steam64ID of the player you wish to grant admin permissions to. Next, replace SteamUserNameHere with the Steam username of the player. This allows you to identify admins easier.

info

If you need help locating the the Steam 64ID, yoou can follow our guide here.

The <admins> text block should now look something like this:

<admins>
<!-- <user steamID="76561198021925107" name="Hint on who this user is" permission_level="0" /> -->
<!-- <group steamID="103582791434672565" name="Steam Universe" permission_level_default="1000" permission_level_mod="0" /> -->
<user steamID="SteamIDHere" name="SteamUserNameHere" permission_level="0" />
</admins>
  1. Click the Save icon in the top right of the editor window to save your changes. You can now close the serveradmin.xml window, and restart your server.

CreeperPanel 7DTD Admins