Configure whitelist and blacklist for 7 Days to Die
The whitelist for your 7 Days to Die game server works like a kind of filter that only allows players you have added. We'll tell you how to activate your whitelist and exclude specific players via the blacklist.
What is a whitelist and a blacklist?
Servers, especially in the gaming sector, are generally publicly accessible. A whitelist is a kind of filter and only allows people who have been entered in this whitelist to connect to the server. A blacklist, on the other hand, denies access to certain players on this list. We will show you how to activate and configure your whitelist / blacklist.
How do I activate the whitelist/blacklist in 7 Days to Die?
To activate the whitelist/blacklist in 7 Days to Die, you need to make a few small adjustments. You should know the Steam64 ID of the users you want to add to your whitelist or blacklist. The lists are then edited and configured in Serveradmin.xml
.
- find out your Steam64 ID
- now open and edit the
Serveradmin.xml
on your server- you will find the file
Serveradmin.xml
in the directorysaves
- open the file
Serveradmin.xml
for editing with a text editor
- you will find the file
- search for the line
<adminTools>
- everything between
<adminTools>
and</adminTools>
is recognized by the game server as code. These lines control the configuration of the players.
- everything between
Configure whitelist
- each player must be added to the whitelist individually. The Steam ID is required for this.
- users who are entered by you between the lines
<whitelist>
and</whitelist>
are allowed to join the server.
- users who are entered by you between the lines
- here you can see an example of how a player has been added to the whitelist
<whitelist>
<whitelisted steamID="STEAM64 ID OF THE PLAYER" />
</whitelist>
- The player's Steam64 ID has been added to the whitelist
- The player can now join the server, even if it was set to private in
Serverconfig.xml
- If the server has been set to public via
Serverconfig.xml
and there are players on the whitelist, the server will deny all other players access to the server - Therefore, only whitelist users on private servers!
Configure blacklist
-
each player must be added to the blacklist individually. The Steam ID is required for this.
- users who are entered by you between the lines
<blacklist>
and</blacklist>
are not allowed to join the server.
- users who are entered by you between the lines
-
here you can see an example of how a player has been added to the blacklist
<blacklist>
<blacklisted steamID="STEAM64 ID OF THE PLAYER" unbandate="" />
</blacklist>
- The player's Steam64 ID has been added to the blacklist
- The player cannot join the server until the specified time under unbandate
- Banned players are automatically added to the blacklist
As soon as you have entered all configurations, you can save the changes in Serveradmin.xml
and restart the server. Your changes will then be active.