Advertisement
Guest User

Untitled

a guest
May 25th, 2022
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. ## This is an example nethackrc file. You should edit this to suit your needs
  2.  
  3. ## Edit this on the NAO website: https://alt.org/nethack/webconf/
  4. ## or if in terminal, see https://alt.org/nethack/virus.txt
  5.  
  6. ## Also see https://nethackwiki.com/wiki/Options
  7.  
  8. # Enable the curses interface
  9. OPTIONS=windowtype:curses
  10. OPTIONS=splash_screen
  11. OPTIONS=perm_invent
  12.  
  13. ## Automatically dig if you are wielding a digging tool and moving
  14. ## into a place that can be dug
  15. #OPTIONS=autodig
  16.  
  17. ## Walking into a door attempts to open it
  18. #OPTIONS=autoopen
  19.  
  20. ## Allow saving and loading bones files.
  21. #OPTIONS=bones
  22.  
  23. ## Show out-of-sight areas of lit rooms
  24. #OPTIONS=dark_room
  25.  
  26. ## Use inverse for pets
  27. #OPTIONS=hilite_pet
  28.  
  29. ## Use inverse for piles of items
  30. #OPTIONS=hilite_pile
  31.  
  32. ## How recalled messages (ctrl-p) are displayed.
  33. #OPTIONS=msg_window:reversed
  34.  
  35. ## use IBMgraphics or DECgraphics
  36. #OPTIONS=symset:DECgraphics
  37. OPTIONS=cursesgraphics
  38.  
  39. ## Change symbols
  40. #SYMBOLS=S_ghost:X
  41.  
  42. ## Sort items by name. One of "none", "loot", or "full"
  43. #OPTIONS=sortloot:full
  44.  
  45. ## Require explicit yes for some prompts
  46. #OPTIONS=paranoid_confirmation:Confirm quit attack pray wand Remove
  47.  
  48. ## Conducts
  49. #OPTIONS=nudist
  50. #OPTIONS=blind
  51.  
  52.  
  53. ## Colored menus. Regular expressions allowed.
  54. #
  55. OPTIONS=menucolors
  56. MENUCOLOR=" blessed "=green
  57. MENUCOLOR=" holy "=green
  58. MENUCOLOR=" cursed "=red
  59. MENUCOLOR=" unholy "=red
  60. MENUCOLOR=" cursed .* (being worn)"=orange&underline
  61.  
  62.  
  63. ## Messagetypes
  64. #
  65. ## displacing pets. hide the message.
  66. #MSGTYPE=hide "You swap places with your .*"
  67. ## items on floor. don't repeat the message.
  68. #MSGTYPE=norep "You see here a .*"
  69. #MSGTYPE=norep "You see here an .*"
  70. ## delayed instadeaths. always prompt for -more-
  71. #MSGTYPE=stop "You are slowing down."
  72. #MSGTYPE=stop "You find it hard to breathe."
  73. #MSGTYPE=stop "You are turning a little .*"
  74. ## moving up or down stairs
  75. #MSGTYPE=hide "You descend .*"
  76. #MSGTYPE=hide "You (climb|fly) (up|down) .*"
  77.  
  78. ## Use status hilites
  79. #
  80. OPTIONS=statushilites
  81. # HP
  82. OPTIONS=hitpointbar
  83. OPTIONS=hilite_status:hitpoints/100%/grey&normal
  84. OPTIONS=hilite_status:hitpoints/<100%/green&normal
  85. OPTIONS=hilite_status:hitpoints/<66%/yellow&normal
  86. OPTIONS=hilite_status:hitpoints/<50%/orange&normal
  87. OPTIONS=hilite_status:hitpoints/<33%/red&bold
  88. OPTIONS=hilite_status:hitpoints/<15%/red&inverse
  89. ## Pw
  90. OPTIONS=hilite_status:power/100%/grey&normal
  91. OPTIONS=hilite_status:power/<100%/green&normal
  92. OPTIONS=hilite_status:power/<66%/yellow&normal
  93. OPTIONS=hilite_status:power/<50%/orange&normal
  94. OPTIONS=hilite_status:power/<33%/red&bold
  95. ## Carry
  96. OPTIONS=hilite_status:cap/burdened/yellow/stressed/orange/strained/red&bold/overtaxed/red&inverse/overloaded/red&inverse&blink
  97. ## Hunger
  98. OPTIONS=hilite_status:hunger/satiated/yellow/hungry/orange/weak/red&bold/fainting/red&inverse/fainted/red&inverse&blink
  99. ## Mental
  100. OPTIONS=hilite_status:condition/hallu/yellow
  101. OPTIONS=hilite_status:condition/conf/orange
  102. OPTIONS=hilite_status:condition/stun/red&bold
  103. ## Health
  104. OPTIONS=hilite_status:condition/termill/red&inverse
  105. OPTIONS=hilite_status:condition/foodpois/red&inverse
  106. OPTIONS=hilite_status:condition/slime/red&inverse
  107. # Str, Con, Dex, Int, Wis, Cha
  108. OPTIONS=hilite_status:characteristics/up/green/down/red
  109. # gold
  110. OPTIONS=hilite_status: gold/up/yellow/down/brown
  111.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement