Setup - Galfurian/RadMud GitHub Wiki
This page provides all the information in order to setup the Mud and connect to it.
Libraries
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).
Compile
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
Execute
After compiling the mud, just execute the generated executable
./RadMud
Connection
The mud can be accessed using telnet with the port 4000.
telnet localhost 4000