---
title: Adding an Allowlist (Whitelist) to Your Server
description: Learn how to enable and add players to an allowlist on your Nodecraft hosted Day of Dragons server.
source: "https://nodecraft.com/support/games/day-of-dragons/adding-a-whitelist-to-your-server"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvMGVkN2NkNmEwYS9kYXktb2YtZHJhZ29ucy0xLTItMy5wbmcvbS8ifSx7Im5hbWUiOiJnYW1lX2xvZ28iLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMzc1eDE1MC9jMzQyZjYxODhhL2xvZ28ucG5nL20vIn0seyJuYW1lIjoiY3RhX3RleHQiLCJ0ZXh0IjoiQ3JlYXRlIHlvdXIgb3duIHNlcnZlciEifSx7Im5hbWUiOiJ0ZXh0IiwidGV4dCI6IkFkZGluZyBhbiBBbGxvd2xpc3QgKFdoaXRlbGlzdCkgdG8gWW91ciBTZXJ2ZXIifV0&s=c4b5fcd27b971f4d206a50c10faa0649eb9dee508df542ca2d1ac9f8f72cd3ce"
published: "2019-12-04T19:13:05.063Z"
updated: "2021-07-25T22:27:00.000Z"
---

# Adding an Allowlist (Whitelist) to Your Server

Learn how to enable and add players to an allowlist on your Nodecraft hosted Day of Dragons server.

Day of Dragons offers an allowlist system which allows you to restrict your server to only the players you wish to join.

## Add Players to Allowlist With NodePanel

As the official server hosting provider for Day of Dragons, our panel provides many useful features for Day of Dragons server admins. This includes an interface to manage and enable the allowlist on your server.

- Stop the server. For any changes to be saved the server **must** be offline.
- From the "Game Settings" menu, ensure the "Enable Allowlist" checkbox is checked and saved.
  ![Enable the allowlist on your Day of Dragons server](https://s3-assets.nodecraft.com/attachments/tp5ewPu6RyK5pGm1qavu_636e32c5-c3b4-4255-b1c1-0aa57d63ec70.png)
- Open the "Players" menu and click on the "Allowlist" tab to open the interface
- Search for the player you wish to add to the allowlist. You can use their Steam community profile name, or their Steam64ID.
  ![Search and add player to allowlist in Day of Dragons server](https://s3-assets.nodecraft.com/attachments/k3Lah48DSfChocpSP0Ll_8a291b4a-f20a-4809-97cf-c4545ebb9c1a.gif)
- Once you're done adding players to the allowlist, hit the "Save" button to save changes.
  <br>
  <div class="center">
  <a class="btn blue" href="https://nodecraft.com/games/day-of-dragons-server-hosting">Get your own Day of Dragons Server</a>
  </div>

## Add Players to Allowlist Manually

- Stop the server.
- Open the `/Dragons/Saved/Config/LinuxServer/Game.ini` file. This file path may be different if you're running the server under another operating system.
- The file will look somewhat like this:

```
[/Game/Dev/Libraries/Classes/Runtime/DragonsGameInstance.DragonsGameInstance_C]
iServerMaxPlayers=20
bServerUseJoinList=false
```

- Set `bServerUseJoinList=true` to make the server use an allowlist.
- Add additional lines such as `sServerJoinList=76561198047699606`  to the file for every SteamID you want to be allowlisted. This uses the Steam64ID format, which you can lookup using a tool like [steamid.net](https://steamid.net).
- Here's an example if you wanted to add 2 users to the allowlist:

```
[/Game/Dev/Libraries/Classes/Runtime/DragonsGameInstance.DragonsGameInstance_C]
iServerMaxPlayers=20
bServerUseJoinList=true
sServerJoinList=76561198047699606
sServerJoinList=76561198157725231
```
