https://github.com/mangband/mangband
A free online multi-player realtime roguelike game based on Angband
https://github.com/mangband/mangband
angband game mmorl multiplayer realtime roguelike
Last synced: 3 months ago
JSON representation
A free online multi-player realtime roguelike game based on Angband
- Host: GitHub
- URL: https://github.com/mangband/mangband
- Owner: mangband
- License: other
- Created: 2013-11-19T21:43:53.000Z (over 11 years ago)
- Default Branch: develop
- Last Pushed: 2022-03-13T11:22:09.000Z (over 3 years ago)
- Last Synced: 2024-08-01T03:28:46.883Z (11 months ago)
- Topics: angband, game, mmorl, multiplayer, realtime, roguelike
- Language: C
- Homepage: https://www.mangband.org
- Size: 12.1 MB
- Stars: 62
- Watchers: 13
- Forks: 16
- Open Issues: 114
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
BUILDING
--------mangband and mangclient use a generic autotools build process.
See the INSTALL file for more information.Basically, just run `./configure; make; make install`.
If you're building from the git repository, you'll have to generate
the `./configure` script first, by running `./autogen.sh`.Please note, that mangclient can be compiled with several
different display frontends, which may or may not conflict
with each other. In addition, we support some weird configurations
and build options. Please run `./configure --help` to see
the full list of available features.For additional hints regarding your specific platform (Windows,
OSX), please see the developer Wiki:https://github.com/mangband/mangband/wiki
RUNNING
-------Both mangband and mangclient binaries rely on "lib dir" - a directory
with all the game data.First, they'll look for the ANGBAND_PATH environment variable,
then they'll try the PKGDATADIR constant, then the directories
specified in config files (.mangrc and mangband.cfg).ANGBAND_PATH can be used to select any directory in this manner:
ANGBAND_PATH=./lib ./mangband
ANGBAND_PATH=./lib ./mangclientConfig file directives are "LibDir" in "$HOME/.mangrc" (for client)
and "EDIT_DIR", "DATA_DIR", "SAVE_DIR", "BONE_DIR", "HELP_DIR" in
"mangband.cfg" (for server). Those overwrite any other paths.PKGDATADIR is set during the `./configure` step, and defaults to
something system-specific like "/usr/local/games/mangband". To
adjust it, the --datadir option can be used:./configure --datadir=$PWD/lib