Compiling the Server

The current release of the Stunt server is "for hackers only"—you should have experience building open-source projects on UNIX-like systems. If you have experience compiling LambdaMOO you will find these steps familiar.

Clone the Git repository:

git clone git@github.com:toddsundsted/stunt.git
cd stunt

Configure the source for your environment:

./configure

Before you run make, you should review options.h and make changes, if necessary. In particular, if you intend to run a legacy core (LambdaCore or similar), you should disable the option PLAYER_HUH, which changes the default object that handles failed commands.

Compile:

make

Optionally, you may want to install:

make install

When the make step is complete, the stunt directory will contain the moo server executable.

Read Running the Server for more detail on what to do next.