-
Notifications
You must be signed in to change notification settings - Fork 4
Setup
Enrico Fraccaroli edited this page Nov 20, 2016
·
1 revision
This page provides all the information in order to setup the Mud and connect to it.
In order to compile the mud the following libraries need to be installed:
- sqlite3 (For offline data storage).
- lua (For npc behaviour).
- zlib (For compressed communication).
In order to compile the mud just create a build directory and then use the cmake file provided. Therefore, the commands are the following:
mkdir build
cd build
[optional] export CXX=clang++
cmake ..
make
After compiling the mud, just execute the generated executable
./RadMud
The mud can be accessed using telnet with the port 4000.
telnet localhost 4000