1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-07 15:55:29 +01:00

Merge pull request #2207 from RikerW/patch-install-instructions

add nero's install instructions to README
This commit is contained in:
Chris-plus-alphanumericgibberish 2023-09-15 15:10:14 -04:00 committed by GitHub
commit f208a2e45f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
README
View file

@ -7,3 +7,21 @@ You can play dNethack online using SSH or HTTPS:
* https://www.hardfought.org/nethack/ (servers in USA, UK, and AUS)
* https://ascension.run/ (located in Germany)
* if other servers decide to host dNethack, they will be listed here: https://nethackwiki.com/wiki/Public_server
Setting up dNetHack:
dNetHack is currently only supported on Unix, including WSL for Windows, with no plans to change this for the foreseeable future.
For compiling on Windows:
* Download Windows Subsystem for Linux (WSL)
* Open the Terminal in WSL. (Just clicking on the shortcut opens the terminal)
* Navigate (using `ls` and `cd`) to where you want to install dNAO
* Install git: `apt-get git`
* Download the version of dNAO you want with git: `git clone https://github.com/Chris-plus-alphanumericgibberish/dNAO.git` will get you whatever is the master branch (at the time of writing, currently `compat-3.22.0`)
* Install the following using `apt-get install <XXXX>`: `bison`, `build-essential`, `libncurses5-dev`, `flex`
* Build & install by typing `make install`
* Navigate to the newly-created dnethackdir directory: `cd dnethackdir`
* Run by typing `./dnethack`. Wizard mode is `./dnethack -d -u wizard`
* If you want an rc file (to have custom options and use things like menucolours and autopickup exceptions), edit it via `nano ~/.dnethackrc` (or your preferred text editor)
For Unix, the same steps apply minus installing WSL.