================================================ Axmud - A modern Multi-User Dungeon (MUD) client ================================================ .. image:: screenshots/shot1r.png :alt: Axmud screenshot * `1 Introduction`_ * `2 Downloads`_ * `3 Running Axmud`_ * `4 Installation on MS Windows`_ * `4.1 Installation on MS Windows using Strawberry Perl`_ * `4.2 Installation on MS Windows using ActivePerl`_ * `4.3 Using Festival on MS Windows`_ * `5 Installation on Linux`_ * `5.1 Installation on Linux using the .DEB package`_ * `5.2 Installation on Linux using the .RPM package`_ * `5.3 Installation on Linux from source`_ * `5.3.1 Installation on Arch-based systems`_ * `5.3.2 Installation on Debian-based systems`_ * `5.3.3 Installation on Fedora`_ * `5.3.4 Installation on Manjaro`_ * `5.3.5 Installation on openSUSE`_ * `5.3.6 Installation on Red Hat Enterprise Linux / CentOS`_ * `6 Installation ON BSD`_ * `6.1 Installation on GhostBSD`_ * `7 List of pre-configured worlds`_ * `8 Contributing`_ * `9 Authors`_ * `10 License`_ 1 Introduction ============== Axmud is a modern Multi-User Dungeon (MUD) client written in Perl 5 / Gtk3. Its features include: - Telnet, SSH and SSL connections - ANSI/xterm/truecolour/OSC/RGB colours - Full support for all major MUD protocols, including MXP and GMCP (with partial Pueblo support) - Partial VT100 emulation - Class-based triggers, aliases, macros, timers and hooks - Graphical automapper - Over 100 pre-configured worlds - Multiple approaches to scripting - Fully customisable from top to bottom, using the command line or the extensive GUI interface - Native support for visually-impaired users Axmud is known to work on MS Windows, Linux and \*BSD. It might be possible to install it on other systems such as MacOS, but the authors have not been able to confirm this yet. Axmud does not yet have a comprehensive manual, but there is lots of information to read: - Read the `quick help `__ - Read the `Axmud guide `__, including the section for `visually-impaired users `__ - Read the `tutorial `__ for the Axbasic scripting language - In Axmud's main window menu, click **Help > About** - Just below the menu, click the calendar button to open the object viewer window, and then click on **Help** - Type **;help** for a list of client commands, or **;help listworld** for help on the **;listworld** client command - Type **;axbasichelp** for a list of help topics for the Axbasic scripting language - For further support, visit our `Github page `__ 2 Downloads =========== Latest version: **v1.3.029 (3 Mar 2022)** (see `recent changes `__) Official packages (also available from the `Github release page `__): - `MS Windows installer `__ from Sourceforge - `DEB package (for Debian-based distros, e.g. Ubuntu, Linux Mint) `__ from Sourceforge - `RPM package (for RHEL-based distros, e.g. Fedora) `__ from Sourceforge Source code: - `Source code `__ from Sourceforge - `Source code `__ and `support `__ from GitHub 3 Running Axmud =============== There are several ways to install Axmud (see below). Most of them will add an Axmud icon to your desktop, and an entry in your Start Menu. There are actually two versions of Axmud: a 'normal' version, and a version with optimised settings for visually-impaired users. The optimised version will start talking at you, as soon as you start it. (If you don't hear anything, then perhaps there are no text-to-speech engines installed on your system.) If you're running Axmud from the command line, visually-impaired users can run this script: **baxmud.pl** Other users can run this script: **axmud.pl** Using either script, you can specify a world to which Axmud connects immediately: **axmud.pl empiremud.net 4000** If you omit the port number, Axmud connects using the generic port 23: **axmud.pl elephant.org** If a world profile already exists, you can specify its name instead: **axmud.pl cryosphere** You can force Axmud to use a particular text-to-speech engine by adding the engine's name to the end of those commands. This overrides (almost) all other text-to-speech settings. Acceptable engine names are 'espeak', 'esng' (for espeak-ng), 'flite' (for Festival Lite), 'festival', 'swift' and 'none' (for the dummy engine, which produces no sound). For example: **baxmud.pl empiremud.net 4000 esng** **axmud.pl cryosphere festival** Note that on MS Windows, Flite is not supported, and other speech engines are assumed to be installed in their default locations. 4 Installation on MS Windows ============================ The easiest way to use Axmud on Windows is to download and run the Windows installer. The installer contains everything you need to run Axmud, including a copy of Strawberry Perl, several text-to-speech engine and all the required modules and libraries. Users who already have Strawberry Perl and/or ActivePerl installed on their system can install Axmud manually using the following methods. 4.1 Installation on MS Windows using Strawberry Perl ---------------------------------------------------- Axmud v1.2.0 (and all later versions) is known to work with both 32-bit and 64-bit editions of Strawberry Perl. After installing Strawberry Perl on your system, open a command prompt. From the Windows Start menu, you can click: **All Programs > Strawberry Perl > Perl (command line)** Next, get some modules from CPAN: **cpan Archive::Extract IO::Socket::INET6 IPC::Run Math::Round Net::OpenSSH Path::Tiny Regexp::IPv6** Then get the following module: **cpan File::ShareDir::Install** If the line above generates an error, try this line instead: **cpanm --force --build-args SHELL=cmd.exe --install-args SHELL=cmd.exe File::ShareDir::Install** Now we need some modules from the Sisyphusion repo. (If you are reading this document some time in the distant future and find the repo is no longer available, you can either search around for a replacement, or you can use the installer.) **ppm set repository sisyphusion http://sisyphusion.tk/ppm** **ppm set save** **ppm install Glib Gtk3 GooCanvas2** Before continuing, you should remove the following folder. When asked **Are you sure (Y/N)?**, type **y**. **rmdir /s C:\Strawberry\perl\site\lib\sisyphusion_gtk2_themes_temp** Now type this the following command. At the time of writing, it produces a *cannot remove directory - permission denied* error. This is expected and does not affect Axmud installation. **ppm install http://www.sisyphusion.tk/ppm/PPM-Sisyphusion-Gtk2_theme.ppd** Now we need to copy a .dll file from one location to another: **copy C:\Strawberry\perl\site\lib\auto\Cairo\s1sfontconfig-1.dll C:\Strawberry\perl\bin\s1sfontconfig-1.dll** Download the Axmud source code file (ending .tar.gz), and extract it in a convenient location (e.g. your Downloads folder). If you don't have anything capable of extracting a .tar.gz archive, you can use 7-Zip. From the same command prompt window as earlier, change to that directory, for example: **cd C:\Users\YOURNAME\Downloads\Games-Axmud-1.2.345** From this point, installation is standard. **perl Makefile.PL** **gmake** **gmake install** **axmud.pl** 4.2 Installation on MS Windows using ActivePerl ----------------------------------------------- Axmud is known to work with both 32-bit and 64-bit editions of ActivePerl. First, open a command prompt. From the Windows Start menu, type **cmd** inside the **Search programs and files** box. Then we can get some modules from CPAN: **ppm install dmake** **ppm install Archive::Extract File::ShareDir::Install IO::Socket::INET6 IPC::Run Math::Round Net::OpenSSH Path::Tiny Regexp::IPv6** Now we need some modules from the Sisyphusion repo. (If you are reading this document some time in the distant future and find the repo is no longer available, you can either search around for a replacement, or you can use the installer.) **ppm repo add http://www.sisyphusion.tk/ppm** **ppm install Glib Gtk3 GooCanvas2 -- force** Download the Axmud source code file (ending .tar.gz), and extract it in a convenient location (e.g. your Downloads folder). If you don't have anything capable of extracting a .tar.gz archive, you can use 7-Zip. From the same command prompt window as earlier, change to that directory, for example: **cd C:\Users\YOURNAME\Downloads\Games-Axmud-1.2.345** From this point, installation is standard. **perl Makefile.PL** **dmake** **dmake install** **axmud.pl** 4.3 Using Festival on MS Windows -------------------------------- Axmud cannot use the Festival text-to-speech engine without patching the `Perl IPC::Run module `__. Instructions for doing this can be found in the Axmud source code, in the file **../axmud/nsis/axmud_installer.nsi**. The MS Windows installer already contains a patched version of IPC::Run. 5 Installation on Linux ======================= There are three methods of installation on Linux - install using the **.deb** package, install using the **.rpm** package or install manually using the source code. 5.1 Installation on Linux using the .DEB package ------------------------------------------------ **.deb** packages are typically supported on Debian-based systems (such as Ubuntu and Linux Mint). Installation may be as simple as downloading the **.deb** package and double-clicking on it. If not, you can install the package from the command line. Open a terminal and navigate to the directory where the downloaded file is, for example: **cd Downloads** Then install the package: **sudo dpkg -i libgames-axmud-perl_X.Y.ZZZ.deb** You must replace the **X.Y.ZZZ** with the actual version number you've downloaded, for example: **sudo dpkg -i libgames-axmud-perl_1.2.345.deb** When installation is complete, start Axmud by typing: **axmud.pl** 5.2 Installation on Linux using the .RPM package ------------------------------------------------ **.rpm** packages are typically supported on Fedora-based systems (such as Red Hat Enterprise Linux and CentOS). The package can be installed from the command line. Open a terminal and navigate to the directory where the downloaded file is, for example: ** cd Downloads** Then install the package: **sudo yum localinstall perl-Games-Axmud-X.Y.ZZZ.noarch.rpm** You must replace the **X.Y.ZZZ** with the actual version number you've downloaded, for example: **sudo yum localinstall perl-Games-Axmud-1.2.345.noarch.rpm** When installation is complete, start Axmud by typing: **axmud.pl** 5.3 Installation on Linux from source ------------------------------------- Manual installation is quite simple on most modern Linux systems. This document contains complete instruction for some of the most popular distros: - Arch-based systems (such as Arch Linux) - Debian-based systems (such as Debian, Ubuntu and Linux Mint) - Fedora - Manjaro - openSUSE (see below) - Red Hat Enterprise Linux and CentOS Axmud v1.2.0 (and later versions) cannot easily be easily installed on openSUSE, as the required graphics library (Gtk3) is not yet available through openSUSE's software repositories. We suggest that you continue using Axmud v1.1.405 for the time being. 5.3.1 Installation on Arch-based systems ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (These instructions have been tested on Arch Linux. For Manjaro, see the section below.) First, download the source code from the Axmud website (the most recent file ending .tar.gz). Open a terminal window and navigate to the directory containing the downloaded file, for example: **cd Downloads** Decompress the .tar.gz file: **tar -pzxvf Games-Axmud-X.Y.ZZZ.tar.gz** **cd Games-Axmud-X.Y.ZZZ** You must replace the **X.Y.ZZZ** with the actual version number you've downloaded, for example: **tar -pzxvf Games-Axmud-1.2.345.tar.gz** **cd Games-Axmud-1.2.345** Make sure you have the right dependencies: **sudo pacman -S gtk3 perl-gtk3 goocanvas wmctrl** **sudo pacman -S perl-cpanplus-dist-arch** **setupdistarch** **sudo cpanp i Archive::Zip File::Copy::Recursive File::HomeDir File::ShareDir File::ShareDir::Install Glib Gtk3 GooCanvas2 IO::Socket::INET6 IPC::Run JSON Math::Round Net::OpenSSH Path::Tiny Regexp::IPv6** At the time of writing, there are some issues with installing certain libraries on Arch. If you know that those issues have been fixed, you can type this command to allow Axmud to use SSL connections: **sudo cpanp i IO::Socket::SSL** If you want to use sound effects and/or text-to-speech, you should also type: **sudo pacman -S sox timidity++ espeak-ng** Then install Axmud itself: **perl Makefile.PL** **make** **sudo make install** When installation is complete, start Axmud by typing: **axmud.pl** Axmud's default text-to-speech engine is eSpeak but, at the time of writing, there are some issues with its installation on Arch systems. Assuming that an alternative speech engine has been installed using the instructions just above, visually-impaired users should start Axmud by typing this, the first time: **baxmud.pl esng** Once Axmud has started, type the following commands, which replace Axmud's default speech engine with espeak-ng: **;config all engine esng** **;save** Thereafter, visually-impaired users can start Axmud by typing: **baxmud.pl** 5.3.2 Installation on Debian-based systems ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (These instructions have been tested on Debian, Ubuntu and Linux Mint.) First, download the source code from the Axmud website (the most recent file ending .tar.gz). Open a terminal window and navigate to the directory containing the downloaded file, for example: **cd Downloads** Decompress the .tar.gz file: **tar -pzxvf Games-Axmud\*.tar.gz** **cd Games-Axmud**\* Make sure you have the right dependencies: **sudo apt-get update** **sudo apt-get install build-essential libgtk3-perl libgoocanvas-2.0-dev wmctrl** **sudo cpan install Archive::Extract File::HomeDir File::ShareDir File::ShareDir::Install GooCanvas2 JSON Math::Round Net::OpenSSH Path::Tiny Regexp::IPv6** If you want to use sound effects and/or text-to-speech, you should also type: **sudo apt-get install libsox-fmt-all timidity** Then install Axmud itself: **perl Makefile.PL** **make** **sudo make install** When installation is complete, start Axmud by typing: **axmud.pl** 5.3.3 Installation on Fedora ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ First, download the source code from the Axmud website (the most recent file ending .tar.gz). Open a terminal window and navigate to the directory containing the downloaded file, for example: **cd Downloads** Decompress the .tar.gz file: **tar -pzxvf Games-Axmud-X.Y.ZZZ.tar.gz** **cd Games-Axmud-X.Y.ZZZ** You must replace the X.Y.ZZZ with the actual version number you've downloaded, for example: **tar -pzxvf Games-Axmud-1.2.345.tar.gz** **cd Games-Axmud-1.2.345** Make sure you have the right dependencies: **sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro** **sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm** **sudo dnf install cpan** **sudo dnf install 'perl(Archive::Extract)' 'perl(File::Copy::Recursive)' 'perl(File::Fetch)' 'perl(File::HomeDir)' 'perl(File::ShareDir)' 'perl(File::ShareDir::Install)' 'perl(Glib)' 'perl(Gtk3)' 'perl(GooCanvas2)' 'perl(IO::Socket::INET6)' 'perl(IPC::Run)' 'perl(JSON)' 'perl(Math::Round)' 'perl(Net::OpenSSH)' 'perl(Path::Tiny)' 'perl(Regexp::IPv6)' 'perl(Time::Piece)'** If you want to use sound effects and/or text-to-speech, you should also type: **sudo dnf install sox timidity++** Then install Axmud itself: **perl Makefile.PL** **make** **sudo make install** When installation is complete, start Axmud by typing: **axmud.pl** 5.3.4 Installation on Manjaro ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Manjaro's rolling release version is affected by a recurring issue (Perl modules are not updated when the Perl itself is updated, meaning that any Perl applications will immediately stop working). If you're using the rolling release version, consider installing via `Perl homebrew `__ instead. These instructions work on both the stable and rolling releases of Manjaro. First, download the source code from the Axmud website (the most recent file ending .tar.gz). Open a terminal window and navigate to the directory containing the downloaded file, for example: **cd Downloads** Decompress the .tar.gz file: **tar -pzxvf Games-Axmud-X.Y.ZZZ.tar.gz** **cd Games-Axmud-X.Y.ZZZ** You must replace the X.Y.ZZZ with the actual version number you've downloaded, for example: **tar -pzxvf Games-Axmud-1.2.345.tar.gz** **cd Games-Axmud-1.2.345** Make sure you have the right dependencies: **sudo pacman -S base-devel gtk3 goocanvas perl-gtk3 perl-goocanvas2 wmctrl cpanminus** **sudo cpanm Archive::Extract File::Copy::Recursive File::HomeDir File::ShareDir File::ShareDir::Install Glib IO::Socket::INET6 IO::Socket::SSL IPC::Run JSON Math::Round Net::OpenSSH Path::Tiny Regexp::IPv6** **sudo cpanm Archive::Zip --force** If you want to use sound effects and/or text-to-speech, you should also type: **sudo pacman -S sox timidity++** Then install Axmud itself: **perl Makefile.PL** **make** **sudo make install** When installation is complete, start Axmud by typing: **axmud.pl** 5.3.5 Installation on openSUSE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Axmud v1.2.0 (and later versions) cannot easily be easily installed on openSUSE, as the required graphics library (Gtk3) is not yet available through openSUSE's software repositories. We suggest that you continue using Axmud v1.1.405 for the time being. 5.3.6 Installation on Red Hat Enterprise Linux / CentOS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ First, download the source code from the Axmud website (the most recent file ending .tar.gz). Open a terminal window and navigate to the directory containing the downloaded file, for example: **cd Downloads** Decompress the .tar.gz file: **tar -pzxvf Games-Axmud-X.Y.ZZZ.tar.gz** **cd Games-Axmud-X.Y.ZZZ** You must replace the X.Y.ZZZ with the actual version number you've downloaded, for example: **tar -pzxvf Games-Axmud-1.2.345.tar.gz** **cd Games-Axmud-1.2.345** Now we need to add an extra repository. First get the key: **sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro** Then add the repository. On CentOS/RHEL 6, do this: **sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm** On CentOS/RHEL 7, do this: **sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm** Now make sure you have the right dependencies: **sudo yum groupinstall 'Development Tools'** **sudo yum install epel-release cpan goocanvas2 wmctrl** **sudo yum install 'perl(Archive::Extract)' 'perl(Archive::Tar)' 'perl(Archive::Zip)' 'perl(File::Copy::Recursive)' 'perl(File::Fetch)' 'perl(File::HomeDir)' 'perl(File::ShareDir)' 'perl(File::ShareDir::Install)' 'perl(Glib)' 'perl(Gtk3)' 'perl(IO::Socket::INET6)' 'perl(IPC::Run)' 'perl(JSON)' 'perl(Math::Round)' 'perl(Net::OpenSSH)' 'perl(Path::Tiny)' 'perl(Regexp::IPv6)' 'perl(Time::Piece)'** **sudo cpan install GooCanvas2** If you want to use sound effects and/or text-to-speech, you should also type: **sudo yum install sox libtimidity** Then install Axmud itself: **perl Makefile.PL** **make** **sudo make install** When installation is complete, start Axmud by typing: **axmud.pl** 6 Installation ON BSD ===================== Manual installation using the source code is quite simple on BSD. (At the time of writing, no installer is available). 6.1 Installation on GhostBSD ---------------------------- (These instructions have been tested on GhostBSD, which is based on FreeBSD. It's likely that installation instructions are the same or very similar on all distros based on FreeBSD, OpenBSD or NetBSD.) Open a terminal window and navigate to the directory containing the downloaded file, for example: **cd Downloads** Decompress the .tar.gz file: **tar -pzxvf Games-Axmud-X.Y.ZZZ.tar.gz** **cd Games-Axmud-X.Y.ZZZ** You must replace the X.Y.ZZZ with the actual version number you've downloaded, for example: **tar -pzxvf Games-Axmud-1.2.345.tar.gz** **cd Games-Axmud-1.2.345** Make sure you have the right dependencies: **sudo pkg install goocanvas2 wmctrl** **sudo cpan install Archive::Extract Archive::Zip File::Copy::Recursive File::HomeDir File::ShareDir File::ShareDir::Install Glib Gtk3 GooCanvas2 IO::Socket::INET6 IO::Socket::SSL IPC::Run JSON Math::Round Net::OpenSSH Path::Tiny Regexp::IPv6** If you want to use sound effects and/or text-to-speech, you should also type: **sudo pkg install sox timidity++** Then install Axmud itself: **perl Makefile.PL** **make** **sudo make install** When installation is complete, start Axmud by typing: **axmud.pl** 7 List of pre-configured worlds =============================== Axmud can be used with any world that supports telnet, SSH or SSL connections. The following pre-configured worlds have already been set up to use the automapper, handle connections and so on. - `3-Kingdoms `__ (`Mudstats page `__) - `3-Scapes `__ (`Mudstats page `__) - `4Dimensions `__ (`Mudstats page `__) - `Aardwolf MUD `__ (`Mudstats page `__) - `Achaea, Dreams of Divine Lands `__ (`Mudstats page `__) - `Adventures Unlimited `__ (`Mudstats page `__) - `Aetolia, the Midnight Age `__ (`Mudstats page `__) - `Age of Chaos `__ (`Mudstats page `__) - `Alter Aeon `__ (`Mudstats page `__) - `Ancient Anguish `__ (`Mudstats page `__) - `Archipelago MUD `__ - `ArcticMud `__ (`Mudstats page `__) - `Avalon (Germany) `__ (`Mudstats page `__) - `Avalon: The Legend Lives `__ (`Mudstats page `__) - `Avatar MUD `__ (`Mudstats page `__) - `BatMUD `__ (`Mudstats page `__) - `Bedlam `__ (`Mudstats page `__) - `Burning MUD `__ (`Mudstats page `__) - `Bylins MUD `__ - `CLOK `__ (`Mudstats page `__) - `Carrion Fields `__ (`Mudstats page `__) - `Clessidra MUD `__ (`Top Mud Sites page `__) - `CoffeeMud `__ (`Mudstats page `__) - `Cryosphere `__ (`Mudstats page `__) - `CyberASSAULT `__ (`Mudstats page `__) - `Dark Realms: City of Syne `__ - `Dark and Shattered Lands `__ (`Mudstats page `__) - `DartMUD `__ (`Mudstats page `__) - `Dawn `__ (`Mudstats page `__) - `Dead Souls Dev `__ (`Mudstats page `__) - `Dead Souls Local `__ (`Mudstats page `__) - `Dead Souls Prime `__ (`Mudstats page `__) - `Discworld MUD `__ (`Mudstats page `__) - `Dragon Swords `__ (`Mudstats page `__) - `DragonStone `__ (`Mudstats page `__) - `DuneMUD `__ (`Mudstats page `__) - `Duris: Land of BloodLust `__ (`Mudstats page `__) - `Elephant MUD `__ (`Mudstats page `__) - `Elysium RPG `__ (`Top Mud Sites page `__) - `EmpireMUD 2.0 `__ (`Mudstats page `__) - `End of the Line `__ (`Mudstats page `__) - `Eternal Darkness `__ (`Mudstats page `__) - `Forest's Edge `__ - `Forgotten Kingdoms `__ (`Mudstats page `__) - `Genesis `__ (`Mudstats page `__) - `Godwars: Rebirth of Apocalypse `__ (`Mudstats page `__) - `GreaterMUD `__ (`Mudstats page `__) - `HellMOO `__ (`Mudstats page `__) - `HexOnyx `__ (`Top Mud Sites page `__) - `HolyQuest `__ (`Mudstats page `__) - `Iberia MUD `__ (`Mudstats page `__) - `Icesus `__ (`Mudstats page `__) - `ifMUD `__ (`Mudstats page `__) - `Imperian: Sundered Heavens `__ (`Mudstats page `__) - `Islands `__ (`Mudstats page `__) - `LambdaMOO `__ (`Mudstats page `__) - `LegendMUD `__ (`Mudstats page `__) - `Legends of Kallisti `__ (`Mudstats page `__) - `Lost Souls `__ (`Mudstats page `__) - `Lowlands `__ - `Luminari MUD `__ (`Mudstats page `__) - `Lusternia: Age of Ascension `__ (`Mudstats page `__) - `MUD1 (British Legends) `__ (`Mudstats page `__) - `MUD2 (Canadian server) `__ (`Mudstats page `__) - `MUD2 (UK server) `__ (`Mudstats page `__) - `MUME - Multi Users In Middle Earth `__ (`Mudstats page `__) - `Materia Magica `__ (`Mudstats page `__) - `Medievia `__ (`Mudstats page `__) - `Merentha `__ (`Mudstats page `__) - `Midnight Sun `__ (`Mudstats page `__) - `Miriani `__ (`Mudstats page `__) - `MorgenGrauen `__ (`Mudstats page `__) - `NannyMUD `__ (`Mudstats page `__) - `Nanvaent `__ (`Mudstats page `__) - `New Worlds: Ateraan `__ (`Mudstats page `__) - `Nodeka `__ (`Mudstats page `__) - `Nuclear War `__ (`Mudstats page `__) - Penultimate Destination (`Mudstats page `__) - `Pict MUD `__ (`Mudstats page `__) - `RavenMUD `__ (`Mudstats page `__) - `Realms of Despair `__ (`Mudstats page `__) - `Realms of Wonder `__ (`Top Mud Sites page `__) - `RealmsMUD `__ (`Mudstats page `__) - `Reinos de Leyenda `__ (`Mudstats page `__) - `RetroMUD `__ (`Mudstats page `__) - `RoninMUD `__ (`Mudstats page `__) - `Rupert `__ (`Mudstats page `__) - `SlothMUD III `__ (`Mudstats page `__) - `Star Wars Mud `__ (`Mudstats page `__) - `StickMUD `__ (`Mudstats page `__) - `Stonia `__ (`Top Mud Sites page `__) - `Tempora Heroica `__ - `The Inquisition: Legacy `__ (`Mudstats page `__) - The Land (`Mudstats page `__) - `The Two Towers `__ (`Mudstats page `__) - `The Unofficial SquareSoft MUD `__ (`Mudstats page `__) - `The Wheel of Time MUD `__ (`Mudstats page `__) - `TorilMUD `__ (`Mudstats page `__) - `Tsunami `__ (`Mudstats page `__) - `Valhalla MUD `__ (`Mudstats page `__) - `Viking MUD `__ (`Mudstats page `__) - `Waterdeep `__ (`Mudstats page `__) - `ZombieMUD `__ (`Mudstats page `__) 8 Contributing ============== - Report a bug: Use the Github `issues `__ page. 9 Authors ========= See the `AUTHORS `__ file. 10 License ========== Axmud is licensed under the `GNU General Public License v3.0 `__. ✨🍰✨