---
title: Banning Players From Your Server
description: Learn how to ban players from your Nodecraft hosted Day of Dragons server.
source: "https://nodecraft.com/support/games/day-of-dragons/banning-players-from-your-server"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvMGVkN2NkNmEwYS9kYXktb2YtZHJhZ29ucy0xLTItMy5wbmcvbS8ifSx7Im5hbWUiOiJnYW1lX2xvZ28iLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMzc1eDE1MC9jMzQyZjYxODhhL2xvZ28ucG5nL20vIn0seyJuYW1lIjoiY3RhX3RleHQiLCJ0ZXh0IjoiQ3JlYXRlIHlvdXIgb3duIHNlcnZlciEifSx7Im5hbWUiOiJ0ZXh0IiwidGV4dCI6IkJhbm5pbmcgUGxheWVycyBGcm9tIFlvdXIgU2VydmVyIn1d&s=4e8e5d9c0717ee345ad16ef516b5684c6ddae0e2f27ffa7319b8092bee64ab81"
published: "2019-12-04T21:00:14.584Z"
updated: "2021-07-25T22:26:00.000Z"
---

# Banning Players From Your Server

Learn how to ban players from your Nodecraft hosted Day of Dragons server.

Day of Dragons offers a way to ban troublesome players from your server.

## Ban Players With NodePanel

As the official server hosting provider for Day of Dragons, our panel provides lots of useful features for Day of Dragons server admins. This includes an easy to use UI to ban players from your server.

- Stop the server. For changes to be saved the server **must** be offline.
- Open the "Players" menu and click on the "Banned Users" tab to open the interface
- Search for the player you wish to ban from the server. You can use their Steam community profile name, or their SteamID.
  ![Search and ban player from your Day of Dragons server](https://s3-assets.nodecraft.com/attachments/SSu0JUvfQSKSE8EC41ty_202374a4-1692-4ab4-b6a1-73abeb6aded4.gif)
- Once you're done adding players to ban, hit the "Save" button to save changes.
- Start the server again.
  <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>

## Ban Players 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
sServerBanList=Steam64ID
```

- Add additional `sServerBanList` lines to the file for every Steam64ID you want to ban. You can lookup their ID using a tool like [steamid.net](https://steamid.net).
- Here's an example if you wanted to ban 2 users from the server:

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