Difference between revisions of "Options (dNetHack)"

From NetHackWiki
Jump to navigation Jump to search
(Raise headings by one level for consistency with Options page)
(Add delay_length, upcoming for statuslines, and (upcoming) statuseffects)
Line 5: Line 5:
 
==default_template_hilite==
 
==default_template_hilite==
 
Enables default hilites for monster templates. Boolean option, defaults to TRUE. Cannot be set in game.
 
Enables default hilites for monster templates. Boolean option, defaults to TRUE. Cannot be set in game.
 +
 +
==delay_length==
 +
Sets the length of delays when rendering animation (none, short, or normal). Defaults to normal. Can be set in game.
  
 
==dnethack_dungeon_colors==
 
==dnethack_dungeon_colors==
Line 13: Line 16:
  
 
==MONSTERTEMPLATE==
 
==MONSTERTEMPLATE==
 +
{{upcoming|dNetHack|In 3.23.0, the bug that makes setting MONSTERTEMPLATE for cordyceps and spore zombies not work is fixed.}}
 +
 
Allows changing background colour, foreground colour, and symbol for a monster template, for example, to (almost) replicate the defaults:
 
Allows changing background colour, foreground colour, and symbol for a monster template, for example, to (almost) replicate the defaults:
 
  MONSTERTEMPLATE=zombified:bg:green
 
  MONSTERTEMPLATE=zombified:bg:green
Line 30: Line 35:
  
 
Available colours: black, red, green, brown, blue, magenta, cyan, gray, orange, lightgreen, yellow, lightblue, lightmagenta, lightcyan, white.
 
Available colours: black, red, green, brown, blue, magenta, cyan, gray, orange, lightgreen, yellow, lightblue, lightmagenta, lightcyan, white.
 +
 +
==statuseffects==
 +
{{upcoming|dNetHack|In 3.23.0, this option will be added.}}
 +
 +
Specifies which status effects should be shown in the status line. Can be set to one or more status effects separated by spaces, which can each be negated by prefixing them with !. The special value "all" will enable all status effects (or disable all status effects when negated). Changes are applied left-to-right, starting with the default value. Defaults to all.
 +
 +
Available status effects (case-insensitive): all, Stone, Slime, Sufct, Ill, FoodPois, Blind, Stun, Conf, Hallu, Panic, Stmblng, Stggrng, Babble, Scream, Faint, Held, UHold, Lycn, Invl, Lev, Fly, Ride, TimeStop, Lust, DeadMagc, Miso, Catapsi, DimLock.
 +
 +
Examples:
 +
# Disable all status effects except Stone
 +
OPTION=statuseffects:!all stone
 +
# Enable all status effects except DeadMagc, Miso, Catapsi, and DimLock
 +
OPTION=statuseffects:!deadmagc !miso !catapsi !dimlock
 +
# Disable all status effects, then enable them. Since changes are applied left-to-right, this does nothing.
 +
OPTION=statuseffects:!all all
  
 
==statuslines==
 
==statuslines==
 +
{{upcoming|dNetHack|In 3.23.0, statuslines will work for curses as well as TTY. It will also default to 4 and accept any value greater than 2 (curses with !classic_status has either 3 or 4 statuslines).}}
 +
 
Specifies the amount of status lines (2 or 3, defaults to 3). Only available for TTY. Can be set in game.
 
Specifies the amount of status lines (2 or 3, defaults to 3). Only available for TTY. Can be set in game.
 
{{stub}}
 
{{stub}}

Revision as of 12:03, 9 April 2024

As a variant of NetHack 3.4.3, dNetHack options include most available options from NetHack 3.4.3 and 3.4.3-NAO alongside several new ones.

New options

default_template_hilite

Enables default hilites for monster templates. Boolean option, defaults to TRUE. Cannot be set in game.

delay_length

Sets the length of delays when rendering animation (none, short, or normal). Defaults to normal. Can be set in game.

dnethack_dungeon_colors

Enables colouring of walls and floors on certain levels. Boolean option, defaults to TRUE. Can be set in game.

dnethack_start_text

Enables extra dNetHack-specific hints on starting or restoring a game. Boolean option, defaults to TRUE. Cannot be set in game.

MONSTERTEMPLATE

The following information pertains to an upcoming version (dNetHack). If this version is now released, please verify that it is still accurate, then update the page to incorporate this information.

In 3.23.0, the bug that makes setting MONSTERTEMPLATE for cordyceps and spore zombies not work is fixed.

Allows changing background colour, foreground colour, and symbol for a monster template, for example, to (almost) replicate the defaults:

MONSTERTEMPLATE=zombified:bg:green
MONSTERTEMPLATE=skelified:bg:green
MONSTERTEMPLATE=crystalfied:bg:green
MONSTERTEMPLATE=tomb:fg:gray
MONSTERTEMPLATE=tomb:sym:`
MONSTERTEMPLATE=yellow:bg:green
MONSTERTEMPLATE=dream:bg:green
MONSTERTEMPLATE=moly:bg:green
# These do not work due to a bug (cordyceps and spore zombie are not handled by parse_monster_template)
#MONSTERTEMPLATE=spore:bg:green
#MONSTERTEMPLATE=cordyceps:bg:green
#MONSTERTEMPLATE=cordyceps:sym:F

You cannot use this to unset a default template symbol, unless you disable default_template_hilite.

Available colours: black, red, green, brown, blue, magenta, cyan, gray, orange, lightgreen, yellow, lightblue, lightmagenta, lightcyan, white.

statuseffects

The following information pertains to an upcoming version (dNetHack). If this version is now released, please verify that it is still accurate, then update the page to incorporate this information.

In 3.23.0, this option will be added.

Specifies which status effects should be shown in the status line. Can be set to one or more status effects separated by spaces, which can each be negated by prefixing them with !. The special value "all" will enable all status effects (or disable all status effects when negated). Changes are applied left-to-right, starting with the default value. Defaults to all.

Available status effects (case-insensitive): all, Stone, Slime, Sufct, Ill, FoodPois, Blind, Stun, Conf, Hallu, Panic, Stmblng, Stggrng, Babble, Scream, Faint, Held, UHold, Lycn, Invl, Lev, Fly, Ride, TimeStop, Lust, DeadMagc, Miso, Catapsi, DimLock.

Examples:

# Disable all status effects except Stone
OPTION=statuseffects:!all stone
# Enable all status effects except DeadMagc, Miso, Catapsi, and DimLock
OPTION=statuseffects:!deadmagc !miso !catapsi !dimlock
# Disable all status effects, then enable them. Since changes are applied left-to-right, this does nothing.
OPTION=statuseffects:!all all

statuslines

The following information pertains to an upcoming version (dNetHack). If this version is now released, please verify that it is still accurate, then update the page to incorporate this information.

In 3.23.0, statuslines will work for curses as well as TTY. It will also default to 4 and accept any value greater than 2 (curses with !classic_status has either 3 or 4 statuslines).

Specifies the amount of status lines (2 or 3, defaults to 3). Only available for TTY. Can be set in game.

This page is a stub. Should you wish to do so, you can contribute by expanding this page.