aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJulien Dessaux2021-08-09 17:53:37 +0200
committerJulien Dessaux2021-08-09 17:53:37 +0200
commit386493cfa7601cf36de1d5af84114c8465387dc2 (patch)
treea6d23ec774db27b319af9be3974343a3a9439889 /content
parentAdded edgedancer book article (diff)
downloadwww-386493cfa7601cf36de1d5af84114c8465387dc2.tar.gz
www-386493cfa7601cf36de1d5af84114c8465387dc2.tar.bz2
www-386493cfa7601cf36de1d5af84114c8465387dc2.zip
Began adding nethack articles
Diffstat (limited to 'content')
-rw-r--r--content/docs/nethack/_index.md24
-rw-r--r--content/docs/nethack/nethackrc.md90
2 files changed, 114 insertions, 0 deletions
diff --git a/content/docs/nethack/_index.md b/content/docs/nethack/_index.md
new file mode 100644
index 0000000..f71d5a4
--- /dev/null
+++ b/content/docs/nethack/_index.md
@@ -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.
diff --git a/content/docs/nethack/nethackrc.md b/content/docs/nethack/nethackrc.md
new file mode 100644
index 0000000..050cfec
--- /dev/null
+++ b/content/docs/nethack/nethackrc.md
@@ -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
+```