Began adding nethack articles
This commit is contained in:
parent
6bdfd5b4c9
commit
386493cfa7
2 changed files with 114 additions and 0 deletions
24
content/docs/nethack/_index.md
Normal file
24
content/docs/nethack/_index.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
title: Nethack
|
||||||
|
description: The dungeon crawler game
|
||||||
|
layout: single
|
||||||
|
---
|
||||||
|
|
||||||
|
## Nethack
|
||||||
|
|
||||||
|
I have been an on and off [nethack](https://en.wikipedia.org/wiki/NetHack) player since about 2008, and even though I am biased by this fact I will say that Nethack is just the best game one could ever play in its computer gaming life. Almost ten years later, I finally won my first game, after countless stupid deaths and so so many hours of fun.
|
||||||
|
|
||||||
|
- first_ascension : a lawful human Valkyrie ascended to demigodhood in december 2017.
|
||||||
|
- second_ascension : a lawful human Samourai ascended to demigodhood in june 2018.
|
||||||
|
- third_ascension : a chaotic elf ranger ascended to demigodhood in june 2019.
|
||||||
|
|
||||||
|
## Stupid deaths
|
||||||
|
|
||||||
|
Here are some of the deaths that I found a bit "creative" in their own way :
|
||||||
|
- Striking a sea monster that was holding me with Mjollnir while not being myself shock resistant.
|
||||||
|
- Talking to an aligned priest while my god was angry with me. The priest got angry and obliterated me.
|
||||||
|
- Thinking that because a monster stepped on a square it is safe for me to do so. In this case I was very low on HP when I killed a dwarf king, and when I went on his square to loot the corpse I triggered an arrow trap that the dwarf had escaped, and died.
|
||||||
|
|
||||||
|
## .nethackrc
|
||||||
|
|
||||||
|
Here is my [.nethackrc]({{< ref "nethackrc.md" >}}) configuration for nethack 3.6.
|
90
content/docs/nethack/nethackrc.md
Normal file
90
content/docs/nethack/nethackrc.md
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
---
|
||||||
|
title: .nethackrc
|
||||||
|
description: my nethack configuration file
|
||||||
|
---
|
||||||
|
|
||||||
|
## .nethackrc
|
||||||
|
|
||||||
|
```cfg
|
||||||
|
OPTIONS=name:Adyxax
|
||||||
|
OPTIONS=perm_invent
|
||||||
|
OPTIONS=catname:Whiskers
|
||||||
|
OPTIONS=dogname:Bailey
|
||||||
|
OPTIONS=horsename:Star
|
||||||
|
OPTIONS=pettype:dog
|
||||||
|
OPTIONS=pickup_types:$"?+!=/
|
||||||
|
OPTIONS=autodig
|
||||||
|
OPTIONS=noautopickup
|
||||||
|
OPTIONS=autoquiver
|
||||||
|
OPTIONS=checkpoint
|
||||||
|
OPTIONS=nocmdassist
|
||||||
|
OPTIONS=color
|
||||||
|
OPTIONS=confirm
|
||||||
|
OPTIONS=DECgraphics
|
||||||
|
OPTIONS=noeight_bit_tty
|
||||||
|
OPTIONS=extmenu
|
||||||
|
OPTIONS=fixinv
|
||||||
|
OPTIONS=help
|
||||||
|
OPTIONS=hilite_pet
|
||||||
|
OPTIONS=noignintr
|
||||||
|
OPTIONS=lit_corridor
|
||||||
|
OPTIONS=lootabc
|
||||||
|
OPTIONS=mail
|
||||||
|
OPTIONS=null
|
||||||
|
OPTIONS=prayconfirm
|
||||||
|
OPTIONS=pushweapon
|
||||||
|
OPTIONS=norest_on_space
|
||||||
|
OPTIONS=safe_pet
|
||||||
|
OPTIONS=showexp
|
||||||
|
OPTIONS=showrace
|
||||||
|
OPTIONS=showscore
|
||||||
|
OPTIONS=scores:10t 2a o
|
||||||
|
OPTIONS=silent
|
||||||
|
OPTIONS=sortpack
|
||||||
|
OPTIONS=sparkle
|
||||||
|
OPTIONS=nostandout
|
||||||
|
OPTIONS=time
|
||||||
|
OPTIONS=travel
|
||||||
|
OPTIONS=nouse_inverse
|
||||||
|
OPTIONS=verbose
|
||||||
|
|
||||||
|
OPTIONS=msghistory:20
|
||||||
|
OPTIONS=boulder:0
|
||||||
|
OPTIONS=disclose:+i +a +v +g +c
|
||||||
|
OPTIONS=fruit:snozberry
|
||||||
|
OPTIONS=menustyle:full
|
||||||
|
OPTIONS=menu_headings:inverse
|
||||||
|
OPTIONS=msg_window:reversed
|
||||||
|
OPTIONS=number_pad:0
|
||||||
|
OPTIONS=pickup_burden:stressed
|
||||||
|
OPTIONS=runmode:walk
|
||||||
|
OPTIONS=suppress_alert:3.4.3
|
||||||
|
|
||||||
|
OPTIONS=menucolors
|
||||||
|
MENUCOLOR="blessed"=green
|
||||||
|
MENUCOLOR="holy"=yellow
|
||||||
|
MENUCOLOR="cursed"=red
|
||||||
|
MENUCOLOR="uncursed"=cyan
|
||||||
|
MENUCOLOR="unholy"=brown
|
||||||
|
MENUCOLOR="cursed * (being worn)"=red&underline
|
||||||
|
|
||||||
|
OPTIONS=statushilites
|
||||||
|
OPTION=hilite_status: hitpoints/<30%/red/blink
|
||||||
|
OPTION=hilite_status: strength/down/red/up/green
|
||||||
|
OPTION=hilite_status: dexterity/down/red/up/green
|
||||||
|
OPTION=hilite_status: constitution/down/red/up/green
|
||||||
|
OPTION=hilite_status: intelligence/down/red/up/green
|
||||||
|
OPTION=hilite_status: wisdom/down/red/up/green
|
||||||
|
OPTION=hilite_status: charisma/down/red/up/green
|
||||||
|
OPTION=hilite_status: gold/down/red/up/green
|
||||||
|
OPTION=hilite_status: armor-class/down/green/up/red
|
||||||
|
OPTION=hilite_status: hitpoints-max/down/red/up/green
|
||||||
|
OPTION=hilite_status: power-max/down/red/up/green
|
||||||
|
OPTION=hilite_status: experience-level/down/red/up/green
|
||||||
|
OPTION=hilite_status: hunger/0/red/normal
|
||||||
|
OPTION=hilite_status: hunger/2/yellow/normal
|
||||||
|
OPTION=hilite_status: hunger/3/red/underline
|
||||||
|
OPTION=hilite_status: hunger/4/red/normal
|
||||||
|
OPTION=hilite_status: hunger/5/red/underline
|
||||||
|
OPTION=hilite_status: hunger/6/red/underline
|
||||||
|
```
|
Loading…
Add table
Reference in a new issue