Installing WSL1 is not covered in this guide, you can follow the steps in this article. Only do the Installing WSL.
and Getting Started with your Linux subsystem.
steps. Be sure to install the Ubuntu 18.04 LTS
distro. You can try the Ubuntu
distro which is Ubuntu version 20.04, but I haven't tested it myself.
This guide will only support SQLite and MySQL for NWNX_SQL.
While NWNX_SQL will be compiled with MySQL support, setting up the actual MySQL database is not covered in this guide.
Advanced plugins like the Profiler, Lua, Ruby and DotNET plugins are not covered.
sudo apt update && sudo apt upgrade -y
sudo apt install -y git unzip zip cmake build-essential libsqlite3-dev libssl-dev libmysqlclient-dev
git clone https://github.com/nwnxee/unified.git
cd ~/unified
./Scripts/buildnwnx.sh -j 4
cd ~/
mkdir server
cd server
wget https://nwnx.io/nwnee-dedicated-8193.23.zip
unzip https://nwnx.io/nwnee-dedicated-8193.23.zip
rm https://nwnx.io/nwnee-dedicated-8193.23.zip
cd bin/linux-x86
./nwserver-linux
exit
cd
If your Windows NWN Userdirectory is C:\Users\<Username>\Documents\Neverwinter Nights\
it can be accessed in WSL through /mnt/c/Users/<Username>/Documents/Neverwinter Nights/
-
nano ~/.local/share/Neverwinter\ Nights/nwn.ini
Change the
MODULES
,HAK
andTLK
aliases to your windows nwn userdirectory:MODULES=/mnt/c/Users/<Username>/Documents/Neverwinter Nights/modules
HAK=/mnt/c/Users/<Username>/Documents/Neverwinter Nights/hak
TLK=/mnt/c/Users/<Username>/Documents/Neverwinter Nights/tlk
Press
Ctrl+x
to exit andy
to save
-
cd ~/
-
wget https://raw.githubusercontent.com/Daztek/NWNX-WSL/master/run-server.sh
-
chmod +x run-server.sh
-
nano run-server.sh
Edit the file to your liking, by default all plugins but
ServerLogRedirector
are disabled. Don't forget to setMODNAME
to your module filename, without .mod.Press
Ctrl+x
to exit andy
to save.
-
./run-server.sh
It'll automatically load your module from the windows side and start the server, by default it's only accessible through LAN.
To stop the server, just type
exit
in the console.
If you want to update NWNX:EE at some point you can do the following:
cd ~/unified
git pull
./Scripts/buildnwnx.sh -j 4
cd
When Beamdog releases a patch you'll need to update nwserver-linux, this is how:
Replace XXXX.Y with the needed version, for example 8193.16
cd ~/server
rm -r bin data
wget https://nwnx.io/nwnee-dedicated-XXXX.Y.zip
unzip nwnee-dedicated-XXXX.zip
rm nwnee-dedicated-XXXX.zip
cd
If you want to edit settings like "Sticky Player Names", "Show DM Joined Messages" etc you can do the following:
nano ~/.local/share/Neverwinter\ Nights/settings.tml
Change the settings you want and press Ctrl+x
to exit and y
to save.
If you want Redis support, you can do the following:
-
sudo apt install -y redis-server
-
sudo nano /etc/redis/redis.conf
Find the
supervised no
line and change it tosupervised systemd
Press
Ctrl+x
to exit andy
to save. -
sudo service redis-server start
This starts the redis server and has to be done every time your PC is restarted.