Egg Repository

Pterodactyl Community Egg Repository

Neverwinter Nights: Enhanced Edition

Return to the Forgotten Realms in this bestselling Dungeons & Dragons roleplaying game. Combines all the content of Neverwinter Nights Diamond Edition with all-new enhanced features. Includes 100+ hours of award-winning adventures and the tools to create your own!

Read Me

Neverwinter Nights: Enhanced Edition

Return to the Forgotten Realms in this bestselling Dungeons & Dragons roleplaying game. Combines all the content of Neverwinter Nights Diamond Edition with all-new enhanced features. Includes 100+ hours of award-winning adventures and the tools to create your own!

Be mindful that this is a very old 32-bit application. Documentation and support is limited.

[!IMPORTANT] Due to a bug in the current Pterodactyl Wings daemon (git issue here) your Wings daemon must be configured to use UID `1000`` when running this server. If not, then the server will crash upon opening. TLDR; The game expects the current user to exist as it uses it to build working directory paths, and by default the user created for the container has a UID of 1000.

Server Ports

Port default
Game 5121
Script Debugger 5122

Content and Modules

This is a barebones server that does not include any content. All content must be self supplied. You can retrieve the official modules by purchasing the game and copying the data to your server. You may also consume player-made modules from various community websites, most popular of which is the Neverwinter Vault.

Installing official data

Official data can be transferred and used on the server, but you must own a copy of the game to get the data.

  1. Browse to your local installation of the game.
  2. Archive the data/ directory.
  3. In Pterodactyl, navigate to the server view and into the Files tab.
  4. Upload the new data.zip archive to the server.
  5. Unarchive the data.zip archive into the data/ directory.

Official modules will be found at: data/mod/

Installing custom modules

Custom modules are modules made my other players and distributed for consumption. They come in all shapes and sizes, and can be found readily on the internet. The most popular community for this is the Neverwinter Vault.

Assuming you are using the Neverwinter Vault, find the module you want to download. Download the corresponding files and upload them to the appropriate directories on your server. All custom modules (and custom data in general) live in the user directory.

The table below shows the different file types that you could potentially find in a custom module and in which directory they need to be placed. Some modules may deviate and require that some files be place into the override folder. Be sure to read the description of the modules and any README files to ensure these are place appropriately.

File type Folder Purpose
.mod user/modules Module master file
.hak user/hak Extra game resources
.tlk user/tlk Talk-tables (descriptions, names, etc.)
.bic user/localvault Character files
.wav / .bmu user/music Music files
Yolks
NameTag
ghcr.io/ptero-eggs/yolks:debianghcr.io/ptero-eggs/yolks:debian
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Game VersionVersion of the game to installNWN_VERSIONlatestYesYes
Module NameName of the module we want to load. Official modules are stored in `~/data` and custom modules need to be stored in `~/user`. Must match the file name exactly without the extension.MODULE_NAMEYesYes
Load Slot #Save game slot number to load on boot.SAVE_SLOTYesYes
Max Number Of ClientsMaximum number of connections to the game server.MAX_CLIENTS96YesYes
Minimum LevelMinimum character level required to access the game server.MIN_LEVEL1YesYes
Maximum LevelMaximum character level required to access the game server.MAX_LEVEL100YesYes
Pause And PlayToggle game pausing permissions. 0 = game can only be paused by DM 1 = game can by paused by playersPAUSE_AND_PLAY1YesYes
PvP ModeThe mode of PvP enabled. 0 = none 1 = party 2 = fullPVP2YesYes
Server Vault Mode0 = local characters only 1 = server characters onlySERVER_VAULT1YesYes
Enforce Legal CharactersToggle enforcement of legal characters.ELC1YesYes
Enforce Item Level RestrictionsToggle enforcement of item level restrictions.ILR1YesYes
Game TypeSet which game room to post the game to. This only applies if the game is public.GAME_TYPE0YesYes
Toggle Single PartiesToggle if multiple parties are allowed.ONE_PARTY0YesYes
DifficultyGame difficulty selection. 1 = easy 2 = normal 3 = D&D hardcore 4 = very difficultDIFFICULTY3YesYes
Auto Save IntervalInterval between autosaves in minutes.AUTO_SAVE_INTERVAL0YesYes
Player PasswordPassword needed to join the server as a player.PLAYER_PASSWORDYesYes
DM PasswordPassword needed to join the server as a DM.DM_PASSWORDYesYes
Server NameName of the server as shown on the server browser.SERVER_NAMEA Pterodactyl hosted serverYesYes
Is Public GameToggle indicating if this is a public or private game.IS_PUBLIC0YesYes
Reload When EmptyDetermines if the module state is persistent when the server is empty.RELOAD_WHEN_EMPTY0YesYes
Install Script
#!/bin/bash
# Neverwinter Nights Installation Script
#
# Server Files: /mnt/server

# Download the latest version from the Beamdog website
if [ -z "$NWN_VERSION" ] || [ "$NWN_VERSION" == "latest" ]; then
    NWN_VERSION=$(curl -L -s 'https://registry.hub.docker.com/v2/repositories/beamdog/nwserver/tags' | jq -r '[."results"[]["name"] | select(test("\\d*\\.\\d*$"))][0]')
fi

cd /mnt/server
curl -o nwnee.zip -L https://nwn.beamdog.net/downloads/nwnee-dedicated-${NWN_VERSION}.zip
unzip -u nwnee.zip -d .

# Run the server once to generate default files and directories
cd bin/linux-x86 && ./nwserver-linux

# Copy generated files into the volume and update relevant paths
mv /root/.local/share/Neverwinter\ Nights /mnt/server/user
sed -i 's/\/root\/.local\/share\/Neverwinter Nights/\/home\/container\/user/g' /mnt/server/user/nwn.ini
sed -i 's/\/root\/.local\/share\/Neverwinter Nights/\/home\/container\/user/g' /mnt/server/user/nwnplayer.ini
sed -i 's/\/root\/.local\/share\/Neverwinter Nights/\/home\/container\/user/g' /mnt/server/user/settings.tml

echo "Installation complete."