File: Guidebook.mn

package info (click to toggle)
nethack 3.6.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 19,716 kB
  • ctags: 22,505
  • sloc: ansic: 235,202; cpp: 7,250; yacc: 2,846; perl: 1,161; lex: 579; sh: 445; awk: 90; makefile: 61; lisp: 15; sed: 11
file content (3570 lines) | stat: -rw-r--r-- 145,759 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
.\" $NHDT-Branch: master $:$NHDT-Revision: 1.188 $ $NHDT-Date: 1449420465 2015/12/06 16:47:45 $
.ds h0 "NetHack Guidebook
.ds h1
.ds h2 %
.ds vr "NetHack 3.6
.ds f0 "\*(vr
.ds f1
.ds f2 "December 7, 2015
.\" labeled paragraph start (should be part of tmac.n, but I don't want to
.\" make changes to that file)
.\" .PS word
.\"	set the width for the label column
.\" .PL word
.\"	label for the entry
.\" .PE
.\"	clean up
.de PS
.nr PY \\w'\\$1\ -\ 'u			\" width of label plus " - "
.nr PX \\w'\ -\ 'u			\" width of " - "
.sn \\n(pdu				\" tmac.n: inter-paragraph space
.in +\\n(PYu				\" additional indent past label (etc)
.si					\" tmac.n: start indented section
..
.\" labeled paragraph label (and first line)
.de PL
.br
\\h'|-\\n(PYu'\\$1\\h'|-\\n(PXu'\ -\ \\c \" back up, output the label, then
.					\" skip to width-of(" - ") before the
.					\" normal indentation, output the " - " 
.					\" then attach the next line (the
.					\" text) without stopping (\c: nroff
.					\" section 4.2)
..
.\"labeled paragraph end
.de PE
.ei					\" tmac.n: end indented section
.in -\\n(PYu				\" undo indent past label (etc)
.sn \\n(pdu				\" tmac.n: inter-paragraph space
..
.\" end of labeled paragrah
.\"
.\" aligned single character key with SHORT definition (if it overflows one
.\" line, all bets are off)
.\" Usage:
.\"  .CC k "definition here"
.nr CZ \w'\fBW'		\" width of the key character column
.nr CW \n(CZ/2		\" half the width of the key character column
.de CC
.nr CX \\w'\\fB\\$1'u/2	\" half the width of the key character
.nr CY \\n(CWu-\\n(CXu	\" difference between the two half widths
.\" output: move right CR units, print the key letter, move right to
.\"  the full width of the column, print " - " and the definition
\\h'|\\n(CYu'\\fB\\$1\\fP\\h'|\\n(CZu'\ -\ \\$2
..
.mt
A Guide to the Mazes of Menace
(Guidebook for NetHack)
.au
Original version - Eric S. Raymond
(Edited and expanded for 3.6 by Mike Stephenson and others)
.hu
Preface - Version 3.6
.pg
This version of the game is special in a particular way.  Near the end of
the development of 3.6, one of the significant inspirations for many of the 
humorous and fun features found in the game, author \fITerry Pratchett\fP,
passed away.  We have dedicated this version of the game in his memory.
.hn 1
Introduction
.pg
Recently, you have begun to find yourself unfulfilled and distant 
in your daily occupation.  Strange dreams of prospecting, stealing, 
crusading, and combat have haunted you in your sleep for many months, 
but you aren't sure of the reason.  You wonder whether you have in 
fact been having those dreams all your life, and somehow managed to 
forget about them until now.  Some nights you awaken suddenly
and cry out, terrified at the vivid recollection of the strange and 
powerful creatures that seem to be lurking behind every corner of the 
dungeon in your dream.  Could these details haunting your dreams be real?  
As each night passes, you feel the desire to enter the mysterious caverns 
near the ruins grow stronger.  Each morning, however, you quickly put 
the idea out of your head as you recall the tales of those who entered 
the caverns before you and did not return.  Eventually you can resist 
the yearning to seek out the fantastic place in your dreams no longer.  
After all, when other adventurers came back this way after spending time 
in the caverns, they usually seemed better off than when they passed 
through the first time.  And who was to say that all of those who did 
not return had not just kept going?

.pg
Asking around, you hear about a bauble, called the Amulet of Yendor by some,
which, if you can find it, will bring you great wealth.  One legend you were
told even mentioned that the one who finds the amulet will be granted
immortality by the gods.  The amulet is rumored to be somewhere beyond the
Valley of Gehennom, deep within the Mazes of Menace.  Upon hearing the
legends, you immediately realize that there is some profound and 
undiscovered reason that you are to descend into the caverns and seek 
out that amulet of which they spoke.  Even if the rumors of the amulet's 
powers are untrue, you decide that you should at least be able to sell the 
tales of your adventures to the local minstrels for a tidy sum, especially 
if you encounter any of the terrifying and magical creatures of 
your dreams along the way.  You spend one last night fortifying yourself 
at the local inn, becoming more and more depressed as you watch the odds 
of your success being posted on the inn's walls getting lower and lower.  

.pg
  In the morning you awake, collect your belongings, and 
set off for the dungeon.  After several days of uneventful 
travel, you see the ancient ruins that mark the entrance to the 
Mazes of Menace.  It is late at night, so you make camp at the entrance 
and spend the night sleeping under the open skies.  In the morning, you 
gather your gear, eat what may be your last meal outside, and enter the 
dungeon...

.hn 1
What is going on here?
.pg
You have just begun a game of NetHack.  Your goal is to grab as much
treasure as you can, retrieve the Amulet of Yendor, and escape the
Mazes of Menace alive.
.pg
Your abilities and strengths for dealing with the hazards of adventure
will vary with your background and training:
.pg
\fIArcheologists\fP understand dungeons pretty well; this enables them
to move quickly and sneak up on the local nasties.  They start equipped
with the tools for a proper scientific expedition.
.pg
\fIBarbarians\fP are warriors out of the hinterland, hardened to battle.
They begin their quests with naught but uncommon strength, a trusty hauberk,
and a great two-handed sword.
.pg
\fICavemen\fP and \fICavewomen\fP start with exceptional strength but,
unfortunately, with neolithic weapons.
.pg
\fIHealers\fP are wise in medicine and apothecary.  They know the
herbs and simples that can restore vitality, ease pain, anesthetize,
and neutralize poisons; and with their instruments, they can divine a
being's state of health or sickness.  Their medical practice earns them
quite reasonable amounts of money, with which they enter the dungeon.
.pg
\fIKnights\fP are distinguished from the common skirmisher by their
devotion to the ideals of chivalry and by the surpassing excellence of
their armor.
.pg
\fIMonks\fP are ascetics, who by rigorous practice of physical and mental
disciplines have become capable of fighting as effectively without weapons
as with.  They wear no armor but make up for it with increased mobility.
.pg
\fIPriests\fP and \fIPriestesses\fP are clerics militant, crusaders
advancing the cause of righteousness with arms, armor, and arts
thaumaturgic.  Their ability to commune with deities via prayer
occasionally extricates them from peril, but can also put them in it.
.pg
\fIRangers\fP are most at home in the woods, and some say slightly out
of place in a dungeon.  They are, however, experts in archery as well
as tracking and stealthy movement.
.pg
\fIRogues\fP are agile and stealthy thieves, with knowledge of locks,
traps, and poisons.  Their advantage lies in surprise, which they employ
to great advantage.
.pg
\fISamurai\fP are the elite warriors of feudal Nippon.  They are lightly
armored and quick, and wear the \fIdai-sho\fP, two swords of the deadliest
keenness.
.pg
\fITourists\fP start out with lots of gold (suitable for shopping with),
a credit card, lots of food, some maps, and an expensive camera.  Most
monsters don't like being photographed.
.pg
\fIValkyries\fP are hardy warrior women.  Their upbringing in the harsh
Northlands makes them strong, inures them to extremes of cold, and instills
in them stealth and cunning.
.pg
\fIWizards\fP start out with a knowledge of magic, a selection of magical
items, and a particular affinity for dweomercraft.  Although seemingly weak
and easy to overcome at first sight, an experienced Wizard is a deadly foe.
.pg
You may also choose the race of your character:
.pg
\fIDwarves\fP are smaller than humans or elves, but are stocky and solid
individuals.  Dwarves' most notable trait is their great expertise in mining
and metalwork.  Dwarvish armor is said to be second in quality not even to the
mithril armor of the Elves.
.pg
\fIElves\fP are agile, quick, and perceptive; very little of what goes
on will escape an Elf.  The quality of Elven craftsmanship often gives
them an advantage in arms and armor.
.pg
\fIGnomes\fP are smaller than but generally similar to dwarves.  Gnomes are
known to be expert miners, and it is known that a secret underground mine
complex built by this race exists within the Mazes of Menace, filled with
both riches and danger.
.pg
\fIHumans\fP are by far the most common race of the surface world, and
are thus the norm to which other races are often compared.  Although
they have no special abilities, they can succeed in any role.
.pg
\fIOrcs\fP are a cruel and barbaric race that hate every living thing
(including other orcs).  Above all others, Orcs hate Elves with a passion
unequalled, and will go out of their way to kill one at any opportunity.
The armor and weapons fashioned by the Orcs are typically of inferior quality.
.hn 1
What do all those things on the screen mean?
.pg
On the screen is kept a map of where you have
been and what you have seen on the current dungeon level; as you
explore more of the level, it appears on the screen in front of you.
.pg
When NetHack's ancestor \fIrogue\fP first appeared, its screen
orientation was almost unique among computer fantasy games.  Since
then, screen orientation has become the norm rather than the
exception; NetHack continues this fine tradition.  Unlike text
adventure games that accept commands in pseudo-English sentences and
explain the results in words, NetHack commands are all one or two
keystrokes and the results are displayed graphically on the screen.  A
minimum screen size of 24 lines by 80 columns is recommended; if the
screen is larger, only a 21x80 section will be used for the map.
.pg
NetHack can even be played by blind players, with the assistance of Braille
readers or speech synthesisers.  Instructions for configuring NetHack for
the blind are included later in this document.
.pg
NetHack generates a new dungeon every time you play it; even the
authors still find it an entertaining and exciting game despite
having won several times.
.pg
NetHack offers a variety of display options.  The options available to you
will vary from port to port, depending on the capabilities of your
hardware and software, and whether various compile-time options were
enabled when your executable was created.  The three possible display
options are: a monochrome character interface, a color character interface,
and a graphical interface using small pictures called tiles.  The two
character interfaces allow fonts with other characters to be substituted,
but the default assignments use standard ASCII characters to represent
everything.  There is no difference between the various display options
with respect to game play.  Because we cannot reproduce the tiles or
colors in the Guidebook, and because it is common to all ports, we will
use the default ASCII characters from the monochrome character display
when referring to things you might see on the screen during your game.
.pg
In order to understand what is going on in NetHack, first you must
understand what NetHack is doing with the screen.  The NetHack screen
replaces the ``You see ...'' descriptions of text adventure games.
Figure 1 is a sample of what a NetHack screen might look like.
The way the screen looks for you depends on your platform.

.TS S
center tab(~);
a.
_
The bat bites!

    ------
    |....|    ----------
    |.<..|####...@...$.|
    |....-#   |...B....+
    |....|    |.d......|
    ------    -------|--



Player the Rambler     St:12 Dx:7 Co:18 In:11 Wi:9 Ch:15  Neutral
Dlvl:1 $:0  HP:9(12) Pw:3(3) AC:10 Exp:1/19 T:257 Weak

_
.TE
.ce 1
Figure 1

.hn 2
The status lines (bottom)
.pg
The bottom two lines of the screen contain several cryptic pieces of
information describing your current status.  If either status line
becomes longer than the width of the screen, you might not see all of
it.  Here are explanations of what the various status items mean
(though your configuration may not have all the status items listed
below):
.lp "Rank  "
Your character's name and professional ranking (based on the
experience level, see below).
.lp Strength
A measure of your character's strength; one of your six basic
attributes.  A human character's attributes can range from 3 to 18 inclusive;
non-humans may exceed these limits
(occasionally you may get super-strengths of the form 18/xx, and magic can
also cause attributes to exceed the normal limits).  The
higher your strength, the stronger you are.  Strength affects how
successfully you perform physical tasks, how much damage you do in
combat, and how much loot you can carry.
.lp Dexterity
Dexterity affects your chances to hit in combat, to avoid traps, and
do other tasks requiring agility or manipulation of objects.
.lp Constitution
Constitution affects your ability to recover from injuries and other
strains on your stamina.
.lp Intelligence
Intelligence affects your ability to cast spells and read spellbooks.
.lp Wisdom
Wisdom comes from your practical experience (especially when dealing with
magic).  It affects your magical energy.
.lp Charisma
Charisma affects how certain creatures react toward you.  In
particular, it can affect the prices shopkeepers offer you.
.lp Alignment
\fBLawful\fP, \fBNeutral\fP, or \fBChaotic\fP.  Often, Lawful is
taken as good and Chaotic as evil, but legal and ethical do not always
coincide.  Your alignment influences how other
monsters react toward you.  Monsters of a like alignment are more likely
to be non-aggressive, while those of an opposing alignment are more likely
to be seriously offended at your presence.
.lp "Dungeon Level
How deep you are in the dungeon.  You start at level one and the number
increases as you go deeper into the dungeon.  Some levels are special,
and are identified by a name and not a number.  The Amulet of Yendor is
reputed to be somewhere beneath the twentieth level.
.lp "Gold  "
The number of gold pieces you are openly carrying.  Gold which you have
concealed in containers is not counted.
.lp "Hit Points
Your current and maximum hit points.  Hit points indicate how much
damage you can take before you die.  The more you get hit in a fight,
the lower they get.  You can regain hit points by resting, or by using
certain magical items or spells.  The number in parentheses is the maximum
number your hit points can reach.
.lp Power
Spell points.  This tells you how much mystic energy (\fImana\fP)
you have available for spell casting.  Again, resting will regenerate the
amount available.
.lp "Armor Class
A measure of how effectively your armor stops blows from unfriendly
creatures.  The lower this number is, the more effective the armor; it
is quite possible to have negative armor class. 
.lp Experience
Your current experience level and experience points.  As you
adventure, you gain experience points.  At certain experience point
totals, you gain an experience level.  The more experienced you are,
the better you fight and withstand magical attacks.  Many dungeons
show only your experience level here.
.lp "Time  "
The number of turns elapsed so far, displayed if you have the
.op time
option set.
.lp "Hunger status
Your current hunger status, ranging from \fBSatiated\fP down to
\fBFainting\fP.  If your hunger status is normal, it is not displayed.
.pg
Additional status flags may appear after the hunger status:  \fBConf\fP
when you're confused, \fBFoodPois\fP or \fBIll\fP
when sick, \fBBlind\fP when you can't
see, \fBStun\fP when stunned, and \fBHallu\fP when hallucinating.
.hn 2
The message line (top)
.pg
The top line of the screen is reserved for messages that describe
things that are impossible to represent visually.  If you see a
``\fB--More--\fP'' on the top line, this means that NetHack has
another message to display on the screen, but it wants to make certain
that you've read the one that is there first.  To read the next message,
just press the space bar.
.pg
To change how and what messages are shown on the message line,
see ``Configuring Message Types`` and the
.op verbose
option.
.hn 2
The map (rest of the screen)
.pg
The rest of the screen is the map of the level as you have explored it
so far.  Each symbol on the screen represents something.  You can set
various graphics options to change some of the symbols the game uses;
otherwise, the game will use default symbols.  Here is a list of what the
default symbols mean:
.lp "- and |
The walls of a room, or an open door.  Or a grave (|).
.lp .
The floor of a room, ice, or a doorless doorway.
.lp #
A corridor, or iron bars, or a tree, or possibly a kitchen sink (if
your dungeon has sinks), or a drawbridge.
.lp >
Stairs down: a way to the next level.
.lp <
Stairs up: a way to the previous level.
.lp +
A closed door, or a spellbook containing a spell you may be able to learn.
.lp @
Your character or a human.
.lp $
A pile of gold.
.lp ^
A trap (once you have detected it).
.lp )
A weapon.
.lp [
A suit or piece of armor.
.lp %
Something edible (not necessarily healthy).
.lp ?
A scroll.
.lp /
A wand.
.lp =
A ring.
.lp !
A potion.
.lp (
A useful item (pick-axe, key, lamp...).
.lp """
An amulet or a spider web.
.lp *
A gem or rock (possibly valuable, possibly worthless).
.lp `
A boulder or statue.
.lp 0
An iron ball.
.lp _
An altar, or an iron chain.
.lp {
A fountain.
.lp }
A pool of water or moat or a pool of lava.
.lp "\e
An opulent throne.
.lp "a-zA-Z and other symbols
Letters and certain other symbols represent the various inhabitants
of the Mazes of Menace.  Watch out, they can be nasty and vicious.
Sometimes, however, they can be helpful.
.lp I
This marks the last known location of an invisible or otherwise unseen
monster.  Note that the monster could have moved.  The 'F' and 'm' commands
may be useful here.
.pg
You need not memorize all these symbols; you can ask the game what any
symbol represents with the `/' command (see the next section for
more info).

.hn 1
Commands
.pg
Commands are initiated by typing one or two characters.  Some commands,
like ``search'', do not require that any more information be collected by
NetHack.  Other commands might require additional information, for
example a direction, or an object to be used.  For those commands that
require additional information, NetHack will present you with either a
menu of choices or with a command line prompt requesting information.  Which
you are presented with will depend chiefly on how you have set the
.op menustyle
option.
.pg
For example, a common question, in the form ``What do you want to
use?\ [a-zA-Z\ ?*]'', asks you to choose an object you are carrying.
Here, ``a-zA-Z'' are the inventory letters of your possible choices.
Typing `?' gives you an inventory list of these items, so you can see
what each letter refers to.  In this example, there is also a `*'
indicating that you may choose an object not on the list, if you
wanted to use something unexpected.  Typing a `*' lists your entire
inventory, so you can see the inventory letters of every object you're
carrying.  Finally, if you change your mind and decide you don't want
to do this command after all, you can press the ESC key to abort the
command.
.pg
You can put a number before some commands to repeat them that many
times; for example, ``10s'' will search ten times.  If you have the
.op number_pad
option set, you must type `n' to prefix a count, so the example above
would be typed ``n10s'' instead.  Commands for which counts make no
sense ignore them.  In addition, movement commands can be prefixed for
greater control (see below).  To cancel a count or a prefix, press the
ESC key.
.pg
The list of commands is rather long, but it can be read at any time
during the game through the `?' command, which accesses a menu of
helpful texts.  Here are the commands for your reference:
.lp ?
Help menu:  display one of several help texts available.
.lp /
Tell what a symbol represents.  You may choose to specify a location
or type a symbol (or even a whole word) to explain.
Specifying a location is done by moving the cursor to a particular spot
on the map and then pressing one of `.', `,', `;',
or `:'.  `.' will explain the symbol at the chosen location,
conditionally check for ``More info?'' depending upon whether the
.op help
option is on, and then you will be asked to pick another location;
`,' will explain the symbol but skip any additional
information; `;' will skip additional info and also not bother asking
you to choose another location to examine; `:' will show additional
info, if any, without asking for confirmation.  When picking a location,
pressing the ESC key will terminate this command, or pressing `?'
will give a brief reminder about how it works.
.pg
Specifying a name rather than a location
always gives any additional information available about that name.
.lp &
Tell what a command does.
.lp <
Go up to the previous level (if you are on a staircase or ladder).
.lp >
Go down to the next level (if you are on a staircase or ladder).
.lp [yuhjklbn]
Go one step in the direction indicated (see Figure 2).  If you sense
or remember
a monster there, you will fight the monster instead.  Only these
one-step movement commands cause you to fight monsters; the others
(below) are ``safe.''
.sd
.TS S
center;
c c.
y  k  u	7  8  9
\e | /	\e | /
h- . -l	4- . -6
/ | \e	/ | \e
b  j  n	1  2  3
	(if \fBnumber_pad\fP is set)
.TE
.ed
.ce 1
Figure 2

.lp [YUHJKLBN]
Go in that direction until you hit a wall or run into something.
.lp m[yuhjklbn]
Prefix:  move without picking up objects or fighting (even if you remember
a monster there)
.lp F[yuhjklbn]
Prefix:  fight a monster (even if you only guess one is there)
.lp M[yuhjklbn]
Prefix:  move far, no pickup.
.lp "g[yuhjklbn]
Prefix:  move until something interesting is found.
.lp "G[yuhjklbn] or <CONTROL->[yuhjklbn]
Prefix:  same as `g', but forking of corridors is not considered interesting.
.lp _
Travel to a map location via a shortest-path algorithm.
.lp ""
The shortest path
is computed over map locations the hero knows about (e.g. seen or
previously traversed).  If there is no known path, a guess is made instead.
Stops on most of
the same conditions as the `G' command, but without picking up
objects, similar to the `M' command.  For ports with mouse 
support, the command is also invoked when a mouse-click takes place on a 
location other than the current position.
.lp .
Rest, do nothing for one turn.
.lp a
Apply (use) a tool (pick-axe, key, lamp...).
.lp A
Remove one or more worn items, such as armor.
.lp ""
Use `T' (take off) to take off only one piece of armor 
or `R' (remove) to take off only one accessory.
.lp ^A
Redo the previous command.
.lp c
Close a door.
.lp C
Call (name) a monster, an individual object, or a type of object.
.lp ""
Same as extended command ``#name''.
.lp ^C
Panic button.  Quit the game.
.lp d
Drop something.
.lp ""
Ex. ``d7a'' means drop seven items of object \fIa\fP.
.lp D
Drop several things.
.lp ""
In answer to the question
.lp ""
``What kinds of things do you want to drop? [!%= BUCXaium]''
.lp ""
you should type zero or more object symbols possibly followed by 
`a' and/or `i' and/or `u' and/or `m'.  In addition, one or more of
the blessed/uncursed/cursed groups may be typed.
.sd
.si
DB  - drop all objects known to be blessed.
DU  - drop all objects known to be uncursed.
DC  - drop all objects known to be cursed.
DX  - drop all objects of unknown B/U/C status.
Da  - drop all objects, without asking for confirmation.
Di  - examine your inventory before dropping anything.
Du  - drop only unpaid objects (when in a shop).
Dm  - use a menu to pick which object(s) to drop.
D%u - drop only unpaid food.
.ei
.ed
.lp ^D
Kick something (usually a door).
.lp e
Eat food.
.\" Make sure Elbereth is not hyphenated below, the exact spelling matters
.hw Elbereth
.lp E
Engrave a message on the floor.
.sd
.si
E- - write in the dust with your fingers.  
.ei
.ed
.lp ""
Engraving the word ``Elbereth'' will cause most monsters to not attack
you hand-to-hand (but if you attack, you will rub it out); this is
often useful to give yourself a breather.  (This feature may be compiled out
of the game, so your version might not have it.)
.lp f
Fire one of the objects placed in your quiver (or quiver sack, or that you
have at the ready).  You may select
ammunition with a previous `Q' command, or let the computer pick
something appropriate if
.op autoquiver
is true.
.lp i
List your inventory (everything you're carrying).
.lp I
List selected parts of your inventory, usually be specifying the character
for a particular set of objects, like `[' for armor or `!' for potions.
.sd
.si
I* - list all gems in inventory;
Iu - list all unpaid items;
Ix - list all used up items that are on your shopping bill;
IB - list all items known to be blessed;
IU - list all items known to be uncursed;
IC - list all items known to be cursed;
IX - list all items whose bless/curse status is known;
I$ - count your money.
.ei
.ed
.lp o
Open a door.
.lp O
Set options.
.lp ""
A menu showing the current option values will be
displayed.  You can change most values simply by selecting the menu
entry for the given option (ie, by typing its letter or clicking upon
it, depending on your user interface).  For the non-boolean choices,
a further menu or prompt will appear once you've closed this menu.
The available options
are listed later in this Guidebook.  Options are usually set before the
game rather than with the `O' command; see the section on options below.
.lp p
Pay your shopping bill.
.lp P
Put on an accessory (ring, amulet, or blindfold).
.lp ""
This command may also be used to wear armor.  The prompt for
which inventory item to use will only list accessories, but choosing
an unlisted item of armor will attempt to wear it.
(See the `W' command below.  It lists armor as the inventory
choices but will accept an accessory and attempt to put that on.)
.lp ^P
Repeat previous message.
.lp ""
Subsequent ^P's repeat earlier messages.
The behavior can be varied via the
.op msg_window
option.
.lp q
Quaff (drink) something (potion, water, etc).
.lp Q
Select an object for your quiver, quiver sack, or just generally at
the ready (only one of these is available at a time).  You can then throw
this (or one of these) using
the `f' command.
.lp ""
(In versions prior to 3.3 this was the command to quit
the game, which has been moved to ``#quit''.)
.lp r
Read a scroll or spellbook.
.lp R
Remove a worn accessory (ring, amulet, or blindfold).
.lp ""
If you're wearing more than one, you'll be prompted for which one to
remove.  When you're only wearing one, then by default it will be removed
without asking, but you can set the
.op paranoid_confirmation
option to require a prompt.
.lp ""
This command may also be used to take off armor.  The prompt for which
inventory item to remove only lists worn accessories, but an item of
worn armor can be chosen.
(See the `T' command below.  It lists armor as the inventory
choices but will accept an accessory and attempt to remove it.)
.lp ^R
Redraw the screen.
.lp s
Search for secret doors and traps around you.  It usually takes several
tries to find something.
.lp S
Save (and suspend) the game.  The game will be restored automatically the
next time you play.
.lp t
Throw an object or shoot a projectile.
.lp T
Take off armor.
.lp ""
If you're wearing more than one piece, you'll be prompted for which
one to take off.  (Note that this treats a cloak covering a suit
and/or a shirt, or a suit covering a shirt, as if the underlying items
weren't there.)
When you're only wearing one, then by default it will
be taken off without asking, but you can set the
.op paranoid_confirmation
option to require a prompt.
.lp ""
This command may also be used to remove accessories.  The prompt
for which inventory item to take off only lists worn armor, but a worn
accessory can be chosen.
(See the `R' command above.  It lists accessories as the inventory
choices but will accept an item of armor and attempt to take it off.)
.lp ^T
Teleport, if you have the ability.
.lp v
Display version number.
.lp V
Display the game history.
.lp w
Wield weapon.
.sd
.si
w- - wield nothing, use your bare hands.
.ei
.ed
Some characters can wield two weapons at once; use the `X' command
(or the ``#twoweapon'' extended command) to do so.
.lp W
Wear armor.
.lp ""
This command may also be used to put on an accessory (ring, amulet, or
blindfold).  The prompt for which inventory item to use will only list
armor, but choosing an unlisted accessory will attempt to put it on.
(See the `P' command above.  It lists accessories as the inventory
choices but will accept an item of armor and attempt to wear it.)
.lp x
Exchange your wielded weapon with the item in your alternate weapon slot.
.lp ""
The latter is used as your secondary weapon when engaging in
two-weapon combat.  Note that if one of these slots is empty,
the exchange still takes place.
.lp X
Toggle two-weapon combat, if your character can do it.  Also available
via the ``#twoweapon'' extended command.
.lp ""
(In versions prior to 3.6 this was the command to switch from normal
play to "explore mode", also known as "discovery mode", which has now
been moved to ``#explore''.)
.lp ^X
Display basic information about your character.
.lp ""
Displays name, role, race, gender (unless role name makes that
redundant, such as \fICaveman\fP or \fIPriestess\fP), and alignment,
along with your patron deity and his or her opposition.  It also
shows most of the various items of information from the status line(s)
in a less terse form, including several additional things which don't
appear in the normal status display due to space considerations.
.lp z
Zap a wand.
.sd
.si
z. - to aim at yourself, use `.' for the direction.
.ei
.ed
.lp Z
Zap (cast) a spell.
.sd
.si
Z. - to cast at yourself, use `.' for the direction.
.ei
.ed
.lp ^Z
Suspend the game
.ux " versions with job control only)." (
.lp :
Look at what is here.
.lp ;
Show what type of thing a visible symbol corresponds to.
.lp ,
Pick up some things from the floor beneath you.
.lp ""
May be preceded by `m' to force a selection menu.
.lp @
Toggle the
.op autopickup
option on and off.
.lp ^
Ask for the type of a trap you found earlier.
.lp )
Tell what weapon you are wielding.
.lp [
Tell what armor you are wearing.
.lp =
Tell what rings you are wearing.
.lp """
Tell what amulet you are wearing.
.lp (
Tell what tools you are using.
.lp *
Tell what equipment you are using.
.lp ""
Combines the preceding five type-specific
commands into one.
.lp $
Count your gold pieces.
.lp +
List the spells you know.
.lp ""
Using this command, you can also rearrange
the order in which your spells are listed, either by sorting the entire
list or by picking one spell from the menu then picking another to swap
places with it.  Swapping pairs of spells changes their casting letters,
so the change lasts after the current `+' command finishes.  Sorting
the whole list is temporary.  To make the most recent sort order persist
beyond the current `+' command, choose the sort option again and then
pick "reassign casting letters".  (Any spells learned after that will
be added to the end of the list rather than be inserted into the sorted
ordering.)
.lp "\e
Show what types of objects have been discovered.
.lp `
Show discovered types for one class of objects.
.lp !
Escape to a shell.
.lp #
Perform an extended command.
.lp ""
As you can see, the authors of NetHack
used up all the letters, so this is a way to introduce the less frequently
used commands.
What extended commands are available depends on what features the game was
compiled with.
.lp #adjust
Adjust inventory letters (most useful when the
.op fixinv
option is ``on'').
.lp ""
This command allows you to move an item from one particular inventory
slot to another so that it has a letter which is more meaningful for you
or that it will appear in a particular location when inventory listings
are displayed.
``#adjust'' can also be used to split a stack of objects; when
choosing the item to adjust, enter a count prior to its letter.
.lp #annotate
Allows you to specify one line of text to associate with the current
dungeon level.  All levels with annotations are displayed by the
``#overview'' command.
.lp #chat
Talk to someone.
.lp #conduct
List voluntary challenges you have maintained.
.lp ""
See the section below entitled ``Conduct'' for details.
.lp "#dip "
Dip an object into something.
.lp #enhance
Advance or check weapon and spell skills.
.lp #force
Force a lock.
.lp #invoke
Invoke an object's special powers.
.lp #jump
Jump to another location.
.lp #loot
Loot a box or bag on the floor beneath you, or the saddle 
from a steed standing next to you.
.lp #monster
Use a monster's special ability (when polymorphed into monster form).
.lp #name
Name a monster, an individual object, or a type of object.  Same as `C'.
.lp #offer
Offer a sacrifice to the gods.
.lp ""
You'll need to find an altar to have any chance at success.
Corpses of recently killed monsters are the fodder of choice.
.lp #overview
Display information you've discovered about the dungeon.  Any visited
level (unless forgotten due to amnesia) with an annotation is included,
and many things (altars, thrones, fountains, and so on; extra stairs
leading to another dungeon branch) trigger an automatic annotation.
If dungeon overview is chosen during end-of-game disclosure, every visited
level will be included regardless of annotations.
.lp #pray
Pray to the gods for help.
.lp ""
Praying too soon after receiving prior help is a bad idea.
(Hint: entering the dungeon alive is treated as having received help.
You probably shouldn't start off a new game by praying right away.)
Since using this command by accident can cause trouble, there is an
option to make you confirm your intent before praying.  It is enabled
by default, and you can reset the
.op paranoid_confirmation
option to disable it.
.lp #quit
Quit the program without saving your game.
.lp ""
Since using this command by accident would throw away the current game,
you are asked to confirm your intent before quitting.  By default a
response of 'y' acknowledges that intent.  You can set the
.op paranoid_confirmation
option to require a response of "yes" instead.
.lp #ride
Ride (or stop riding) a saddled creature.
.lp "#rub "
Rub a lamp or a stone.
.lp "#sit "
Sit down.
.lp #terrain
Show bare map without displaying monsters, objects, or traps.
.lp "#tip "
Tip over a container (bag or box) to pour out its contents.
.lp #turn
Turn undead.
.lp #twoweapon
Toggle two-weapon combat on or off.
.lp ""
Note that you must
use suitable weapons for this type of combat, or it will
be automatically turned off.
.lp #untrap
Untrap something (trap, door, or chest).
.lp ""
In some circumstances it can also be used to rescue trapped monsters.
.lp #version
Print compile time options for this version of NetHack.
.lp #wipe
Wipe off your face.
.lp "#?   "
Help menu:  get the list of available extended commands.
.pg
If your keyboard has a meta key (which, when pressed in combination
with another key, modifies it by setting the `meta' [8th, or `high']
bit), you can invoke many extended commands by meta-ing the first
letter of the command.
In \fINT\fP, \fIOS/2\fP, \fIPC\fP and \fIST\fP \fINetHack\fP,
the `Alt' key can be used in this fashion;
on the \fIAmiga\fP, set the
.op altmeta
option to get this behavior.
On other systems, if typing `Alt' plus another key transmits a
two character sequence consisting of an \fBEscape\fP
followed by the other key, you may set the
.op altmeta
option to have nethack combine them into meta+key.
.lp M-?
#? (not supported by all platforms)
.lp M-2
#twoweapon (unless the number_pad option is enabled)
.lp M-a
#adjust
.lp M-A
#annotate
.lp M-c
#chat
.lp M-C
#conduct
.lp M-d
#dip
.lp M-e
#enhance
.lp M-f
#force
.lp M-i
#invoke
.lp M-j
#jump
.lp M-l
#loot
.lp M-m
#monster
.lp M-n
#name
.lp M-o
#offer
.lp M-O
#overview
.lp M-p
#pray
.lp M-q
#quit
.lp M-r
#rub
.lp M-R
#ride
.lp M-s
#sit
.lp M-t
#turn
.lp M-T
#tip
.lp M-u
#untrap
.lp M-v
#version
.lp M-w
#wipe
.pg
If the
.op number_pad
option is on, some additional letter commands are available:
.lp h
Help menu:  display one of several help texts available, like ``?''.
.lp j
Jump to another location.  Same as ``#jump'' or ``M-j''.
.lp k
Kick something (usually a door).  Same as `^D'.
.lp l
Loot a box or bag on the floor beneath you, or the saddle 
from a steed standing next to you.  Same as ``#loot'' or ``M-l''.
.lp N
Name a monster, an individual object, or a type of object.  Same
as ``#name'' (or ``M-n'') which is the same as the `C'
command.
.lp u
Untrap a trap, door, or chest.  Same as ``#untrap'' or ``M-u''.

.hn 1
Rooms and corridors
.pg
Rooms and corridors in the dungeon are either lit or dark.
Any lit areas within your line of sight will be displayed;  
dark areas are only displayed if they are within one space of you.
Walls and corridors remain on the map as you explore them.
.pg
Secret corridors are hidden.  You can find them with the `s' (search)
command.
.hn 2
Doorways
.pg
Doorways connect rooms and corridors.  Some doorways have no doors;
you can walk right through.  Others have doors in them, which may be
open, closed, or locked.  To open a closed door, use the `o' (open)
command; to close it again, use the `c' (close) command.
.pg
You can get through a locked door by using a tool to pick the lock
with the `a' (apply) command, or by kicking it open with the `^D'
(kick) command.
.pg
Open doors cannot be entered diagonally; you must approach them
straight on, horizontally or vertically.  Doorways without doors are
not restricted in this fashion.
.pg
Doors can be useful for shutting out monsters.  Most monsters cannot
open doors, although a few don't need to (ex. ghosts can walk through
doors).
.pg
Secret doors are hidden.  You can find them with the `s' (search)
command.  Once found they are in all ways equivalent to normal doors.
.hn 2
Traps (`^')
.pg
There are traps throughout the dungeon to snare the unwary delver.
For example, you may suddenly fall into a pit and be stuck for a few
turns trying to climb out.  Traps don't appear on your map until you
see one triggered by moving onto it, see something fall into it, or you
discover it with the `s' (search) command.  Monsters can fall prey to
traps, too, which can be a very useful defensive strategy.
.pg
There is a special pre-mapped branch of the dungeon based on the
classic computer game ``Sokoban.''  The goal is to push the boulders
into the pits or holes.  With careful foresight, it is possible to
complete all of the levels according to the traditional rules of
Sokoban.  Some allowances are permitted in case the player gets stuck;
however, they will lower your luck.
.hn 2
Stairs (`<', `>')
.pg
In general, each level in the dungeon will have a staircase going up
(`<') to the previous level and another going down (`>') to the next
level.  There are some exceptions though.  For instance, fairly early
in the dungeon you will find a level with two down staircases, one
continuing into the dungeon and the other branching into an area
known as the Gnomish Mines.  Those mines eventually hit a dead end,
so after exploring them (if you choose to do so), you'll need to
climb back up to the main dungeon.
.pg
When you traverse a set of stairs, or trigger a trap which sends you
to another level, the level you're leaving will be deactivated and
stored in a file on disk.  If you're moving to a previously visited
level, it will be loaded from its file on disk and reactivated.  If
you're moving to a level which has not yet been visited, it will be
created (from scratch for most random levels, from a template for
some ``special'' levels, or loaded from the remains of an earlier game
for a ``bones'' level as briefly described below).  Monsters are only
active on the current level; those on other levels are essentially
placed into stasis.
.pg
Ordinarily when you climb a set of stairs, you will arrive on the
corresponding staircase at your destination.  However, pets (see below)
and some other monsters will follow along if they're close enough when
you travel up or down stairs, and occasionally one of these creatures
will displace you during the climb.  When that occurs, the pet or other
monster will arrive on the staircase and you will end up nearby.
.hn 2
Ladders (`<', `>')
.pg
Ladders serve the same purpose as staircases, and the two types of
inter-level connections are nearly indistinguishable during game play.
.hn 2
Shops and shopping
.pg
Occasionally you will run across a room with a shopkeeper near the door
and many items lying on the floor.  You can buy items by picking them
up and then using the `p' command.  You can inquire about the price
of an item prior to picking it up by using the ``#chat'' command
while standing on it.  Using an item prior to paying for it will incur a
charge, and the shopkeeper won't allow you to leave the shop until you
have paid any debt you owe.
.pg
You can sell items to a shopkeeper by dropping them to the floor while
inside a shop.  You will either be offered an amount of gold and asked
whether you're willing to sell, or you'll be told that the shopkeeper
isn't interested (generally, your item needs to be compatible with the
type of merchandise carried by the shop).
.pg
If you drop something in a shop by accident, the shopkeeper will usually
claim ownership without offering any compensation.  You'll have to buy
it back if you want to reclaim it.
.pg
Shopkeepers sometimes run out of money.  When that happens, you'll be
offered credit instead of gold when you try to sell something.  Credit
can be used to pay for purchases, but it is only good in the shop where
it was obtained; other shopkeepers won't honor it.  (If you happen to
find a "credit card" in the dungeon, don't bother trying to use it in
shops; shopkeepers will not accept it.)
.pg
The `$' command, which reports the amount of gold you are carrying
(in inventory, not inside bags or boxes), will also show current shop
debt or credit, if any.  The `Iu' command lists unpaid items
(those which still belong to the shop) if you are carrying any.
The `Ix' command shows an inventory-like display of any unpaid
items which have been used up, along with other shop fees, if any.
.hn 3
Shop idiosyncracies
.pg
Several aspects of shop behavior might be unexpected.
.\" note: using * instead of \(bu is better for plain text output
.lp * 2
The price of a given item can vary due to a variety of factors.
.lp * 2
A shopkeeper treats the spot immediately inside the door as if it were
outside the shop.
.lp * 2
While the shopkeeper watches you like a hawk, he will generally ignore
any other customers.
.lp * 2
If a shop is "closed for inventory", it will not open of its own accord.
.lp * 2
Shops do not get restocked with new items, regardless of inventory depletion.

.hn 1
Monsters
.pg
Monsters you cannot see are not displayed on the screen.  Beware!
You may suddenly come upon one in a dark place.  Some magic items can
help you locate them before they locate you (which some monsters can do
very well).
.pg
The commands `/' and `;' may be used to obtain information about those
monsters who are displayed on the screen.  The command ``#name'', or
its synonym `C', allows you
to assign a name to a monster, which may be useful to help distinguish
one from another when multiple monsters are present.  Assigning a name
which is just a space will remove any prior name.
.pg
The extended command ``#chat'' can be used to interact with an adjacent
monster.  There is no actual dialog (in other words, you don't get to
choose what you'll say), but chatting with some monsters such as a
shopkeeper or the Oracle of Delphi can produce useful results.
.hn 2
Fighting
.pg
If you see a monster and you wish to fight it, just attempt to walk
into it.  Many monsters you find will mind their own business unless
you attack them.  Some of them are very dangerous when angered.
Remember:  discretion is the better part of valor.
.pg
In most circumstances, if you attempt to attack a peaceful monster by
moving into its location, you'll be asked to confirm your intent.  By 
default an answer of 'y' acknowledges that intent,
which can be error prone if you're using 'y' to move.  You can set the
.op paranoid_confirmation
option to require a response of "yes" instead.
.pg
If you can't see a monster (if it is invisible, or if you are blinded),
the symbol `I' will be shown when you learn of its presence.
If you attempt to walk into it, you will try to fight it just like
a monster that you can see; of course,
if the monster has moved, you will attack empty air.  If you guess
that the monster has moved and you don't wish to fight, you can use the `m'
command to move without fighting; likewise, if you don't remember a monster
but want to try fighting anyway, you can use the `F' command.
.hn 2
Your pet
.pg
You start the game with a little dog (`d'), cat (`f'), or pony (`u'), which
follows you about the dungeon and fights monsters with you.  Like you, your
pet needs food to survive.  It usually feeds itself on fresh carrion
and other meats.  If you're worried about it or want to train it, you
can feed it, too, by throwing it food.  A properly trained pet can be
very useful under certain circumstances.
.pg
Your pet also gains experience from killing monsters, and can grow
over time, gaining hit points and doing more damage.  Initially, your
pet may even be better at killing things than you, which makes pets
useful for low-level characters.
.pg
Your pet will follow you up and down staircases if it is next to you
when you move.  Otherwise your pet will be stranded and may become
wild.  Similarly, when you trigger certain types of traps which alter
your location (for instance, a trap door which drops you to a lower
dungeon level), any adjacent pet will accompany you and any non-adjacent
pet will be left behind.  Your pet may trigger such traps itself; you
will not be carried along with it even if adjacent at the time.
.hn 2
Steeds
.pg
Some types of creatures in the dungeon can actually be ridden if you
have the right equipment and skill.  Convincing a wild beast to let
you saddle it up is difficult to say the least.  Many a dungeoneer 
has had to resort to magic and wizardry in order to forge the alliance.
Once you do have the beast under your control however, you can 
easily climb in and out of the saddle with the `#ride' command.  Lead
the beast around the dungeon when riding, in the same manner as 
you would move yourself.  It is the beast that you will see displayed
on the map.
.pg
Riding skill is managed by the `#enhance' command.  See the section
on Weapon proficiency for more information about that.
.hn 2
Bones levels
.pg
You may encounter the shades and corpses of other adventurers (or even
former incarnations of yourself!) and their personal effects.  Ghosts
are hard to kill, but easy to avoid, since they're slow and do little
damage.  You can plunder the deceased adventurer's possessions;
however, they are likely to be cursed.  Beware of whatever killed the
former player; it is probably still lurking around, gloating over its
last victory.

.hn 1
Objects 
.pg
When you find something in the dungeon, it is common to want to pick
it up.  In NetHack, this is accomplished automatically by walking over
the object (unless you turn off the
.op autopickup
option (see below), or move with the `m' prefix (see above)), or
manually by using the `,' command.
.pg
If you're carrying too many items, NetHack will tell you so and you won't 
be able to pick
up anything more.  Otherwise, it will add the object(s) to your pack and tell
you what you just picked up.
.pg
As you add items to your inventory, you also add the weight of that object
to your load.  The amount that you can carry depends on your strength and
your constitution.  The
stronger you are, the less the additional load will affect you.  There comes
a point, though, when the weight of all of that stuff you are carrying around
with you through the dungeon will encumber you.  Your reactions
will get slower and you'll burn calories faster, requiring food more frequently
to cope with it.  Eventually, you'll be so overloaded that you'll either have
to discard some of what you're carrying or collapse under its weight.
.pg
NetHack will tell you how badly you have loaded yourself.  The symbols
`Burdened', `Stressed', `Strained', `Overtaxed' and `Overloaded' are
displayed on the bottom line display to indicate your condition.
.pg
When you pick up an object, it is assigned an inventory letter.  Many
commands that operate on objects must ask you to find out which object
you want to use.  When NetHack asks you to choose a particular object
you are carrying, you are usually presented with a list of inventory
letters to choose from (see Commands, above).
.pg
Some objects, such as weapons, are easily differentiated.  Others, like
scrolls and potions, are given descriptions which vary according to
type.  During a game, any two objects with the same description are
the same type.  However, the descriptions will vary from game to game.
.pg
When you use one of these objects, if its effect is obvious, NetHack
will remember what it is for you.  If its effect isn't extremely
obvious, you will be asked what you want to call this type of object
so you will recognize it later.  You can also use the ``#name''
command, or its synonym `C', for the same purpose at any time, to name
all objects of a particular type or just an individual object.
When you use ``#name'' on an object which has already been named,
specifying a space as the value will remove the prior name instead
of assigning a new one.
.hn 2
Curses and Blessings
.pg
Any object that you find may be cursed, even if the object is
otherwise helpful.  The most common effect of a curse is being stuck
with (and to) the item.  Cursed weapons weld themselves to your hand
when wielded, so you cannot unwield them.  Any cursed item you wear
is not removable by ordinary means.  In addition, cursed arms and armor
usually, but not always, bear negative enchantments that make them
less effective in combat.  Other cursed objects may act poorly or
detrimentally in other ways.
.pg
Objects can also be blessed.  Blessed items usually work better or
more beneficially than normal uncursed items.  For example, a blessed
weapon will do more damage against demons.
.pg
Objects which are neither cursed nor blessed are referred to as uncursed.
They could just as easily have been described as unblessed, but the
uncursed designation is what you will see within the game.  A ``glass
half full versus glass half empty'' situation; make of that what you will.
.pg
There are magical means of bestowing or removing curses upon objects,
so even if you are stuck with one, you can still have the curse
lifted and the item removed.  Priests and Priestesses have an innate
sensitivity to this property in any object, so they can more easily avoid
cursed objects than other character roles.
.pg
An item with unknown status will be reported in your inventory with no prefix.
An item which you know the state of will be distinguished in your inventory
by the presence of the word ``cursed'', ``uncursed'' or ``blessed'' in the
description of the item.
In some cases ``uncursed'' will be omitted as being redundant when
enough other information is displayed.
The
.op implicit_uncursed
option can be used to control this; toggle it off to have ``uncursed''
be displayed even when that can be deduced from other attributes.
.hn 2
Weapons (`)')
.pg
Given a chance, most monsters in the Mazes of Menace will gratuitously try to
kill you.  You need weapons for self-defense (killing them first).  Without a
weapon, you do only 1-2 hit points of damage (plus bonuses, if any).
Monk characters are an exception; they normally do much more damage with
bare hands than they do with weapons.
.pg
There are wielded weapons, like maces and swords, and thrown weapons,
like arrows and spears.  To hit monsters with a weapon, you must wield it and
attack them, or throw it at them.  You can simply elect to throw a spear.
To shoot an arrow, you should first wield a bow, then throw the arrow.
Crossbows shoot crossbow bolts.  Slings hurl rocks and (other) stones
(like gems).
.pg
Enchanted weapons have a ``plus'' (or ``to hit enhancement'' which can be
either positive or negative) that adds to your chance to
hit and the damage you do to a monster.  The only way to determine a weapon's
enchantment is to have it magically identified somehow.
Most weapons are subject to some type of damage like rust.  Such
``erosion'' damage can be repaired.
.pg
The chance that an attack will successfully hit a monster, and the amount
of damage such a hit will do, depends upon many factors.  Among them are:
type of weapon, quality of weapon (enchantment and/or erosion), experience
level, strength, dexterity, encumbrance, and proficiency (see below).  The
monster's armor class - a general defense rating, not necessarily due to
wearing of armor - is a factor too; also, some monsters are particularly
vulnerable to certain types of weapons.
.pg
Many weapons can be wielded in one hand; some require both hands.
When wielding a two-handed weapon, you can not wear a shield, and
vice versa.  When wielding a one-handed weapon, you can have another
weapon ready to use by setting things up with the `x' command, which
exchanges your primary (the one being wielded) and alternate weapons.
And if you have proficiency in the ``two weapon combat'' skill, you
may wield both weapons simultaneously as primary and secondary; use the
`#twoweapon' extended command to engage or disengage that.  Only
some types of characters (barbarians, for instance) have the necessary
skill available.  Even with that skill, using two weapons at once incurs
a penalty in the chance to hit your target compared to using just one
weapon at a time.
.pg
There might be times when you'd rather not wield any weapon at all.
To accomplish that, wield `-', or else use the `A' command which
allows you to unwield the current weapon in addition to taking off
other worn items.
.pg
Those of you in the audience who are AD&D players, be aware that each
weapon which existed in AD&D does roughly the same damage to monsters in
NetHack.  Some of the more obscure weapons (such as the \fIaklys\fP,
\fIlucern hammer\fP, and \fIbec-de-corbin\fP) are defined in an
appendix to \fIUnearthed Arcana\fP, an AD&D supplement.
.pg
The commands to use weapons are `w' (wield), `t' (throw),
`f' (fire, an alternative way of throwing), `Q' (quiver),
`x' (exchange), `#twoweapon', and `#enhance' (see below).
.hn 3
Throwing and shooting
.pg
You can throw just about anything via the `t' command.  It will prompt
for the item to throw; picking `?' will list things in your inventory
which are considered likely to be thrown, or picking `*' will list
your entire inventory.  After you've chosen what to throw, you will
be prompted for a direction rather than for a specific target.  The
distance something can be thrown depends mainly on the type of object
and your strength.  Arrows can be thrown by hand, but can be thrown
much farther and will be more likely to hit when thrown while you are
wielding a bow.
.pg
You can simplify the throwing operation by using the `Q' command to
select your preferred ``missile'', then using the `f' command to
throw it.  You'll be prompted for a direction as above, but you don't
have to specify which item to throw each time you use `f'.  There is
also an option,
.op autoquiver,
which has NetHack choose another item to automatically fill your
quiver (or quiver sack, or have at the ready) when the inventory slot used
for `Q' runs out.
.pg
Some characters have the ability to fire a volley of multiple items in a
single turn.  Knowing how to load several rounds of ammunition at
once -- or hold several missiles in your hand -- and still hit a
target is not an easy task.  Rangers are among those who are adept
at this task, as are those with a high level of proficiency in the
relevant weapon skill (in bow skill if you're wielding one to
shoot arrows, in crossbow skill if you're wielding one to shoot bolts,
or in sling skill if you're wielding one to shoot stones).
The number of items that the character has a chance to fire varies from
turn to turn.  You can explicitly limit the number of shots by using a
numeric prefix before the `t' or `f' command.
For example, ``2f'' (or ``n2f'' if using
.op number_pad
mode) would ensure that at most 2 arrows are shot
even if you could have fired 3.  If you specify
a larger number than would have been shot (``4f'' in this example),
you'll just end up shooting the same number (3, here) as if no limit
had been specified.  Once the volley is in motion, all of the items
will travel in the same direction; if the first ones kill a monster,
the others can still continue beyond that spot.
.hn 3
Weapon proficiency
.pg
You will have varying degrees of skill in the weapons available.
Weapon proficiency, or weapon skills, affect how well you can use
particular types of weapons, and you'll be able to improve your skills
as you progress through a game, depending on your role, your experience
level, and use of the weapons.
.pg
For the purposes of proficiency, weapons have
been divided up into various groups such as daggers, broadswords, and
polearms.  Each role has a limit on what level of proficiency a character
can achieve for each group.  For instance, wizards can become highly
skilled in daggers or staves but not in swords or bows.
.pg
The `#enhance' extended command is used to review current weapons proficiency
(also spell proficiency) and to choose which skill(s) to improve when
you've used one or more skills enough to become eligible to do so.  The
skill rankings are ``none'' (sometimes also referred to as ``restricted'',
because you won't be able to advance), ``unskilled'', ``basic'', ``skilled'',
and ``expert''.  Restricted skills simply will not appear in the list
shown by `#enhance'.  (Divine intervention might unrestrict a particular
skill, in which case it will start at unskilled and be limited to basic.)
Some characters can enhance their barehanded combat or martial arts skill
beyond expert to ``master'' or ``grand master''.
.pg
Use of a weapon in which you're restricted or unskilled
will incur a modest penalty in the chance to hit a monster and also in
the amount of damage done when you do hit; at basic level, there is no
penalty or bonus; at skilled level, you receive a modest bonus in the
chance to hit and amount of damage done; at expert level, the bonus is
higher.  A successful hit has a chance to boost your training towards
the next skill level (unless you've already reached the limit for this
skill).  Once such training reaches the threshold for that next level,
you'll be told that you feel more confident in your skills.  At that
point you can use `#enhance' to increase one or more skills.  Such skills
are not increased automatically because there is a limit to your total
overall skills, so you need to actively choose which skills to enhance
and which to ignore.
.hn 3
Two-Weapon combat
.pg
Some characters can use two weapons at once.  Setting things up to
do so can seem cumbersome but becomes second nature with use.
To wield two weapons, you need to use the ``#twoweapon'' command.
But first you need to have a weapon in each hand.
(Note that your two weapons are not fully equal; the one in the
hand you normally wield with is considered primary and the other
one is considered secondary.  The most noticeable difference is   
after you stop--or before you begin, for that matter--wielding
two weapons at once.  The primary is your wielded weapon and the
secondary is just an item in your inventory that's been designated
as alternate weapon.)
.pg
If your primary weapon is wielded but your off hand is empty or has
the wrong weapon, use the sequence 'x', 'w', 'x' to first swap your
primary into your off hand, wield whatever you want as secondary
weapon, then swap them both back into the intended hands.
If your secondary or alternate weapon is correct but your primary
one is not, simply use 'w' to wield the primary.
Lastly, if neither hand holds the correct weapon, use 'w', 'x', 'w'
to first wield the intended secondary, swap it to off hand, and then
wield the primary.
.pg
The whole process can be simplified via use of the
.op pushweapon
option.  When it is enabled, then using 'w' to wield something
causes the currently wielded weapon to become your alternate weapon.
So the sequence 'w', 'w' can be used to first wield the weapon you
intend to be secondary, and then wield the one you want as primary
which will push the first into secondary position.
.pg
When in two-weapon combat mode, using the ``#twoweapon'' command
toggles back to single-weapon mode.  Throwing or dropping either of the
weapons or having one of them be stolen or destroyed will also make you
revert to single-weapon combat.
.hn 2
Armor (`[')
.pg
Lots of unfriendly things lurk about; you need armor to protect
yourself from their blows.  Some types of armor offer better
protection than others.  Your armor class is a measure of this
protection.  Armor class (AC) is measured as in AD&D, with 10 being
the equivalent of no armor, and lower numbers meaning better armor.
Each suit of armor which exists in AD&D gives the same protection in
NetHack.  Here is an (incomplete) list of the armor classes provided by
various suits of armor:

.TS S
center;
a n.
dragon scale mail	1
plate mail	3
crystal plate mail	3
bronze plate mail	4
splint mail	4
banded mail	4
dwarvish mithril-coat	4
elven mithril-coat	5
chain mail	5
orcish chain mail	6
scale mail	6
studded leather armor	7
ring mail	7
orcish ring mail	8
leather armor	8
leather jacket	9
no armor	10
.TE
.pg
You can also wear other pieces of armor (ex. helmets, boots, shields, cloaks)
to lower your armor class even further, but you can only wear one item
of each category (one suit of armor, one cloak, one helmet, one
shield, and so on) at a time.
.pg
If a piece of armor is enchanted, its armor protection will be better
(or worse) than normal, and its ``plus'' (or minus) will subtract from
your armor class.  For example, a +1 chain mail would give you
better protection than normal chain mail, lowering your armor class one
unit further to 4.  When you put on a piece of armor, you immediately
find out the armor class and any ``plusses'' it provides.  Cursed
pieces of armor usually have negative enchantments (minuses) in
addition to being unremovable.
.pg
Many types of armor are subject to some kind of damage like rust.  Such
damage can be repaired.  Some types of armor may inhibit spell casting.
.pg
The commands to use armor are `W' (wear) and `T' (take off).
The `A' command can also be used to take off armor as well as other
worn items.
.hn 2
Food (`%')
.pg
Food is necessary to survive.  If you go too long without eating you
will faint, and eventually die of starvation.  Some types of food will
spoil, and become unhealthy to eat, if not protected.  Food stored in
ice boxes or tins (``cans'') will usually stay fresh, but
ice boxes are heavy, and tins take a while to open.
.pg
When you kill monsters, they usually leave corpses which are also
``food.''  Many, but not all, of these are edible; some also give you
special powers when you eat them.  A good rule of thumb is ``you are
what you eat.''
.pg
Some character roles and some monsters are vegetarian.  Vegetarian monsters
will typically never eat animal corpses, while vegetarian players can,
but with some rather unpleasant side-effects.
.pg
You can name one food item after something you like to eat with the
.op fruit
option.
.pg
The command to eat food is `e'.
.hn 2
Scrolls (`?')
.pg
Scrolls are labeled with various titles, probably chosen by ancient wizards
for their amusement value (ex. ``READ ME,'' or ``THANX MAUD'' backwards).
Scrolls disappear after you read them (except for blank ones, without
magic spells on them).
.pg
One of the most useful of these is the \fIscroll of identify\fP, which
can be used to determine what another object is, whether it is cursed or
blessed, and how many uses it has left.  Some objects of subtle
enchantment are difficult to identify without these.
.pg
A mail daemon may run up and deliver mail to you as a
\fIscroll of mail\fP (on versions compiled with this feature).
To use this feature on versions where NetHack mail delivery is triggered
by electronic mail appearing in your system mailbox,
you must let NetHack know where to look for new mail by setting
the ``MAIL'' environment variable to the file name of your mailbox.
You may also want to set the ``MAILREADER'' environment
variable to the file name of your favorite reader, so NetHack can shell to it
when you read the scroll.
On versions of NetHack where mail is randomly generated internal to the game,
these environment variables are ignored.
You can disable the mail daemon by turning off the
.op mail
option.
.pg
The command to read a scroll is `r'.
.hn 2
Potions (`!')
.pg
Potions are distinguished by the color of the liquid inside the flask.
They disappear after you quaff them.
.pg
Clear potions are potions of water.  Sometimes these are blessed or cursed,
resulting in holy or unholy water.  Holy water is the bane of the undead, so
potions of holy water are good things to throw (`t') at them.  It is also
sometimes very useful to dip (``#dip'') an object into a potion.
.pg
The command to drink a potion is `q' (quaff).
.hn 2
Wands (`/')
.pg
Magic wands usually have multiple magical charges.  Some wands are
directional\(emyou must give a direction in which to zap them.  You can also
zap them at yourself (just give a `.' or `s' for the direction). Be warned,
however, for this is often unwise.  Other wands are nondirectional\(emthey
don't require a direction.  The number of charges in a wand is random and
decreases by one whenever you use it.
.pg
When the number of charges left in a wand becomes zero, attempts to use the
wand will usually result in nothing happening.  Occasionally, however, it may
be possible to squeeze the last few mana points from an otherwise spent wand,
destroying it in the process.  A wand may be recharged by using suitable
magic, but doing so runs the risk of causing it to explode.  The chance
for such an explosion starts out very small and increases each time the
wand is recharged.
.pg
In a truly desperate situation, when your back is up against the wall, you
might decide to go for broke and break your wand.  This is not for the faint
of heart.  Doing so will almost certainly cause a catastrophic release of
magical energies.
.pg
When you have fully identified a particular wand, inventory display will
include additional information in parentheses: the number of times it has
been recharged followed by a colon and then by its current number of charges.
A current charge count of -1 is a special case indicating that the wand
has been cancelled.
.pg
The command to use a wand is `z' (zap).  To break one, use the `a' (apply)
command.
.hn 2
Rings (`=')
.pg
Rings are very useful items, since they are relatively permanent
magic, unlike the usually fleeting effects of potions, scrolls, and
wands.
.pg
Putting on a ring activates its magic.  You can wear only two
rings, one on each ring finger.
.pg
Most rings also cause you to grow hungry more rapidly, the rate
varying with the type of ring.  
.pg
The commands to use rings are `P' (put on) and `R' (remove).
.hn 2
Spellbooks (`+')
.pg
Spellbooks are tomes of mighty magic.  When studied with the `r' (read)
command, they transfer to the reader the knowledge of a spell (and
therefore eventually become unreadable) \(em unless the attempt backfires.
Reading a cursed spellbook or one with mystic runes beyond
your ken can be harmful to your health!
.pg
A spell (even when learned) can also backfire when you cast it.  If you
attempt to cast a spell well above your experience level, or if you have
little skill with the appropriate spell type, or cast it at
a time when your luck is particularly bad, you can end up wasting both the
energy and the time required in casting.
.pg
Casting a spell calls forth magical energies and focuses them with
your naked mind.  Some of the magical energy released comes from within
you, and casting several spells in a row may tire you.
Casting of spells also requires practice.  With practice, your
skill in each category of spell casting will improve.  Over time, however,
your memory of each spell will dim, and you will need to relearn it.
.pg
Some spells are
directional\(emyou must give a direction in which to cast them.  You can also
cast them at yourself (just give a `.' or `s' for the direction). Be warned,
however, for this is often unwise.  Other spells are nondirectional\(emthey
don't require a direction.
.pg
Just as weapons are divided into groups in which a character can become
proficient (to varying degrees), spells are similarly grouped.
Successfully casting a spell exercises its skill group; using the
`#enhance' command to advance a sufficiently exercised skill
will affect all spells within the group.  Advanced skill may increase the
potency of spells, reduce their risk of failure during casting attempts,
and improve the accuracy of the estimate for how much longer they will
be retained in your memory.
Skill slots are shared with weapons skills.  (See also the section on
``Weapon proficiency''.)
.pg
Casting a spell also requires flexible movement, and wearing various types
of armor may interfere with that.
.pg
The command to read a spellbook is the same as for scrolls, `r' (read).
The `+' command lists each spell you know along with its level, skill
category, chance of failure when casting, and an estimate of how strongly
it is remembered.
The `Z' (cast) command casts a spell.
.hn 2
Tools (`(')
.pg
Tools are miscellaneous objects with various purposes.  Some tools
have a limited number of uses, akin to wand charges.  For example, lamps burn
out after a while.  Other tools are containers, which objects can
be placed into or taken out of.
.pg
The command to use tools is `a' (apply).
.hn 3
Containers
.pg
You may encounter bags, boxes, and chests in your travels.  A tool of
this sort can be opened with the ``#loot'' extended command when
you are standing on top of it (that is, on the same floor spot),
or with the `a' (apply) command when you are carrying it.  However,
chests are often locked, and are in any case unwieldy objects.
You must set one down before unlocking it by
using a key or lock-picking tool with the `a' (apply) command,
by kicking it with the `^D' command,
or by using a weapon to force the lock with the ``#force'' extended command.
.pg
Some chests are trapped, causing nasty things to happen when you
unlock or open them.  You can check for and try to deactivate traps
with the ``#untrap'' extended command.
.hn 2
Amulets (`"')
.pg
Amulets are very similar to rings, and often more powerful.  Like
rings, amulets have various magical properties, some beneficial,
some harmful, which are activated by putting them on.
.pg
Only one amulet may be worn at a time, around your neck.
.pg
The commands to use amulets are the same as for rings, `P' (put on)
and `R' (remove).
.hn 2
Gems (`*')
.pg
Some gems are valuable, and can be sold for a lot of gold.  They are also
a far more efficient way of carrying your riches.  Valuable gems increase
your score if you bring them with you when you exit.
.pg
Other small rocks are also categorized as gems, but they are much less
valuable.  All rocks, however, can be used as projectile weapons (if you
have a sling).  In the most desperate of cases, you can still throw them
by hand.
.hn 2
Large rocks (`\`')
.pg
Statues and boulders are not particularly useful, and are generally
heavy.  It is rumored that some statues are not what they seem.
.pg
Very large humanoids (giants and their ilk) have been known to use boulders
as weapons.
.hn 2
Gold (`$')
.pg
Gold adds to your score, and you can buy things in shops with it.
There are a number
of monsters in the dungeon that may be influenced by the amount of gold
you are carrying (shopkeepers aside).

.hn 1
Conduct
.pg
As if winning NetHack were not difficult enough, certain players
seek to challenge themselves by imposing restrictions on the
way they play the game.  The game automatically tracks some of
these challenges, which can be checked at any time with the #conduct
command or at the end of the game.  When you perform an action which
breaks a challenge, it will no longer be listed.  This gives
players extra ``bragging rights'' for winning the game with these
challenges.  Note that it is perfectly acceptable to win the game
without resorting to these restrictions and that it is unusual for
players to adhere to challenges the first time they win the game.
.pg
Several of the challenges are related to eating behavior.  The most
difficult of these is the foodless challenge.  Although creatures
can survive long periods of time without food, there is a physiological
need for water; thus there is no restriction on drinking beverages,
even if they provide some minor food benefits.
Calling upon your god for help with starvation does
not violate any food challenges either.
.pg
A strict vegan diet is one which avoids any food derived from animals.
The primary source of nutrition is fruits and vegetables.  The
corpses and tins of blobs (`b'), jellies (`j'), and fungi (`F') are
also considered to be vegetable matter.  Certain human
food is prepared without animal products; namely, lembas wafers, cram
rations, food rations (gunyoki), K-rations, and C-rations.
Metal or another normally indigestible material eaten while polymorphed
into a creature that can digest it is also considered vegan food.
Note however that eating such items still counts against foodless conduct.
.pg
Vegetarians do not eat animals;
however, they are less selective about eating animal byproducts than vegans.
In addition to the vegan items listed above, they may eat any kind
of pudding (`P') other than the black puddings,
eggs and food made from eggs (fortune cookies and pancakes),
food made with milk (cream pies and candy bars), and lumps of
royal jelly.  Monks are expected to observe a vegetarian diet.
.pg
Eating any kind of meat violates the vegetarian, vegan, and foodless
conducts.  This includes tripe rations, the corpses or tins of any
monsters not mentioned above, and the various other chunks of meat
found in the dungeon.  Swallowing and digesting a monster while polymorphed
is treated as if you ate the creature's corpse.
Eating leather, dragon hide, or bone items while
polymorphed into a creature that can digest it, or eating monster brains
while polymorphed into a mind flayer, is considered eating
an animal, although wax is only an animal byproduct.
.pg
Regardless of conduct, there will be some items which are indigestible,
and others which are hazardous to eat.  Using a swallow-and-digest
attack against a monster is equivalent to eating the monster's corpse.
Please note that the term ``vegan'' is used here only in the context of
diet.  You are still free to choose not to use or wear items derived
from animals (e.g. leather, dragon hide, bone, horns, coral), but the
game will not keep track of this for you.  Also note that ``milky''
potions may be a translucent white, but they do not contain milk,
so they are compatible with a vegan diet.  Slime molds or
player-defined ``fruits'', although they could be anything
from ``cherries'' to ``pork chops'', are also assumed to be vegan.
.pg
An atheist is one who rejects religion.  This means that you cannot
#pray, #offer sacrifices to any god, #turn undead, or #chat with a priest.
Particularly selective readers may argue that playing Monk or Priest
characters should violate this conduct; that is a choice left to the
player.  Offering the Amulet of Yendor to your god is necessary to
win the game and is not counted against this conduct.  You are also
not penalized for being spoken to by an angry god, priest(ess), or
other religious figure; a true atheist would hear the words but
attach no special meaning to them.
.pg
Most players fight with a wielded weapon (or tool intended to be
wielded as a weapon).  Another challenge is to win the game without
using such a wielded weapon.  You are still permitted to throw,
fire, and kick weapons; use a wand, spell, or other type of item;
or fight with your hands and feet.
.pg
In NetHack, a pacifist refuses to cause the death of any other monster
(i.e. if you would get experience for the death).  This is a particularly
difficult challenge, although it is still possible to gain experience
by other means.
.pg
An illiterate character cannot read or write.  This includes reading
a scroll, spellbook, fortune cookie message, or t-shirt; writing a
scroll; or making an engraving of anything other than a single ``x'' (the
traditional signature of an illiterate person).  Reading an engraving,
or any item that is absolutely necessary to win the game, is not counted
against this conduct.  The identity of scrolls and spellbooks (and
knowledge of spells) in your starting inventory is assumed to be
learned from your teachers prior to the start of the game and isn't
counted.
.pg
There are several other challenges tracked by the game.  It is possible
to eliminate one or more species of monsters by genocide; playing without
this feature is considered a challenge.  When the game offers you an
opportunity to genocide monsters, you may respond with the monster type
``none'' if you want to decline.  You can change the form of an item into
another item of the same type (``polypiling'') or the form of your own
body into another creature (``polyself'') by wand, spell, or potion of
polymorph; avoiding these effects are each considered challenges.
Polymorphing monsters, including pets, does not break either of these
challenges.
Finally, you may sometimes receive wishes; a game without an attempt to
wish for any items is a challenge, as is a game without wishing for
an artifact (even if the artifact immediately disappears).  When the
game offers you an opportunity to make a wish for an item, you may
choose ``nothing'' if you want to decline.

.hn 1
Options
.pg
Due to variations in personal tastes and conceptions of how NetHack
should do things, there are options you can set to change how NetHack
behaves.
.hn 2
Setting the options
.pg
Options may be set in a number of ways.  Within the game, the `O'
command allows you to view all options and change most of them.
You can also set options automatically by placing them in the
NETHACKOPTIONS environment variable or in a configuration file.
Some versions of NetHack also have front-end programs that allow
you to set options before starting the game or a global configuration
for system administrators.
.hn 2
Using the NETHACKOPTIONS environment variable
.pg
The NETHACKOPTIONS variable is a comma-separated list of initial
values for the various options.  Some can only be turned on or off.
You turn one of these on by adding the name of the option to the list,
and turn it off by typing a `!' or ``no'' before the name.  Others take a 
character string as a value.  You can set string options by typing
the option name, a colon or equals sign, and then the value of the string.
The value is terminated by the next comma or the end of string.
.pg
For example, to set up an environment variable so that ``autoquiver'' is on,
``autopickup'' is off, the name is set to ``Blue Meanie'', and the fruit
is set to ``papaya'', you would enter the command
.sd
% \fBsetenv NETHACKOPTIONS "autoquiver,\e!autopickup,name:Blue Meanie,fruit:papaya"\fP
.ed
in \fIcsh\fP (note the need to escape the ! since it's special to the shell), or
.sd
$ \fBNETHACKOPTIONS="autoquiver,!autopickup,name:Blue Meanie,fruit:papaya"\fP
$ \fBexport NETHACKOPTIONS\fP
.ed
in \fIsh\fP or \fIksh\fP.
.hn 2
Using a configuration file
.pg
Any line in the configuration file starting with `#' is treated as a comment.
Any line in the configuration file starting with ``OPTIONS='' may be
filled out with options in the same syntax as in NETHACKOPTIONS.
Any line starting with ``SYMBOLS=''
is taken as defining the corresponding symbol
in a different syntax, a sequence of decimal numbers giving 
the character position in the current font to be used in displaying 
each entry. Such a sequence can be continued to multiple lines by putting a `\e'
at the end of each line to be continued.
.pg
Any line starting with ``AUTOPICKUP_EXCEPTION='' is taken
as defining an exception to the 
.op pickup_types
option. 
There is a section of this Guidebook that discusses that.
.pg
The default name of the configuration file varies on different
operating systems, but NETHACKOPTIONS can also be set to
the full name of a file you want to use (possibly preceded by an `@').
.hn 2
Customization options
.pg
Here are explanations of what the various options do.
Character strings that are too long may be truncated.
Some of the options listed may be inactive in your dungeon.
.pg
Some options are persistent, and are saved and reloaded along with
the game.  Changing a persistent option in the configuration file
applies only to new games.
.lp acoustics
Enable messages about what your character hears (default on).
Note that this has nothing to do with your computer's audio capabilities.
Persistent.
.lp align
Your starting alignment (align:lawful, align:neutral,
or align:chaotic).  You may specify just the first letter.
The default is to randomly pick an appropriate alignment.
If you prefix a `!' or ``no'' to the value, you can 
exclude that alignment from being picked randomly.
Cannot be set with the `O' command.  Persistent.
.lp autodig
Automatically dig if you are wielding a digging tool and moving into a place
that can be dug (default false). Persistent.
.lp autoopen
Walking into a door attempts to open it (default true). Persistent.
.lp "autopickup  "
Automatically pick up things onto which you move (default on). Persistent.
See
.op pickup_types
to refine the behavior.
.lp "autoquiver  "
This option controls what happens when you attempt the `f' (fire)
command with an empty quiver (or quiver sack or have nothing at the ready).
When true, the computer will fill
your quiver or quiver sack or make ready some suitable weapon.  Note that it
will not take
into account the blessed/cursed status, enchantment, damage, or
quality of the weapon; you are free to manually fill your quiver or quiver sack
or make ready
with the `Q' command instead.  If no weapon is found or the option is
false, the `t' (throw) command is executed instead.  Persistent. (default false)
.lp blind
Start the character permanently blind.  Persistent. (default false)
.lp bones
Allow saving and loading bones files.  Persistent. (default true)
.lp boulder
Set the character used to display boulders (default is rock class symbol).
.lp catname
Name your starting cat (ex. ``catname:Morris'').
Cannot be set with the `O' command.
.lp character
Pick your type of character (ex. ``character:Monk'');
synonym for ``role''.  See ``name'' for an alternate method
of specifying your role.  Normally only the first letter of
the value is examined; the string ``random'' is an exception.
.lp checkpoint
Save game state after each level change, for possible recovery after
program crash (default on).  Persistent.
.lp checkspace
Check free disk space before writing files to disk (default on).
You may have to turn this off if you have more than 2 GB free space
on the partition used for your save and level files.
Only applies when MFLOPPY was defined during compilation.
.lp clicklook
Allows looking at things on the screen by navigating the mouse
over them and clicking the right mouse button (default off).
.lp cmdassist
Have the game provide some additional command assistance for 
new players if it detects some anticipated mistakes (default on).
.lp "confirm "
Have user confirm attacks on pets, shopkeepers, and other
peaceable creatures (default on).  Persistent.
.lp dark_room
Show out-of-sight areas of lit rooms (default off).  Persistent.
.lp disclose
Controls what information the program reveals when the game ends.
Value is a space separated list of prompting/category pairs
(default is `\fBni na nv ng nc no\fP',
prompt with default response of `\fBn\fP' for each candidate).
Persistent.
The possibilities are:
.sd
.si
.CC i "disclose your inventory;"
.CC a "disclose your attributes;"
.CC v "summarize monsters that have been vanquished;"
.CC g "list monster species that have been genocided;"
.CC c "display your conduct;"
.CC o "display dungeon overview."
.ei
.ed
Each disclosure possibility can optionally be preceded by a prefix which
lets you refine how it behaves.  Here are the valid prefixes:
.sd
.si
.CC y "prompt you and default to yes on the prompt;"
.CC n "prompt you and default to no on the prompt;"
.CC + "disclose it without prompting;"
.CC - "do not disclose it and do not prompt."
.ei
.ed
Omitted categories are implicitly added with `n' prefix.
Specified categories with omitted prefix implicitly use `+' prefix.
Order of the disclosure categories does not matter, program display for
end-of-game disclosure follows a set sequence.
.lp ""
(ex. ``disclose:yi na +v -g o'')
The example sets
\fBinventory\fP to \fIprompt\fP and default to \fIyes\fP,
\fBattributes\fP to \fIprompt\fP and default to \fIno\fP,
\fBvanquished\fP to \fIdisclose without prompting\fP,
\fBgenocided\fP to \fInot disclose\fP and \fInot prompt\fP,
\fBconduct\fP to implicitly \fIprompt\fP and default to \fIno\fP, and
\fBoverview\fP to \fIdisclose without prompting\fP.
.lp ""
Note that the vanquished monsters list includes all monsters killed by
traps and each other as well as by you.
And the dungeon overview shows all levels you had visited but does not
reveal things about them that you hadn't discovered.
.lp dogname
Name your starting dog (ex. ``dogname:Fang'').
Cannot be set with the `O' command.
.lp extmenu
Changes the extended commands interface to pop-up a menu of available commands.
It is keystroke compatible with the traditional interface except that it does
not require that you hit Enter. It is implemented only by the tty port 
(default off), when the game has been compiled to support tty graphics.
.lp female
An obsolete synonym for ``gender:female''.
Cannot be set with the `O' command.
.lp fixinv
An object's inventory letter sticks to it when it's dropped (default on).
If this is off, dropping an object shifts all the remaining inventory letters.
Persistent.
.lp "fruit   "
Name a fruit after something you enjoy eating (ex. ``fruit:mango'')
(default ``slime mold'').  Basically a nostalgic whimsy that NetHack uses
from time to time.  You should set this to something you find more
appetizing than slime mold.  Apples, oranges, pears, bananas, and melons
already exist in NetHack, so don't use those.
.lp gender
Your starting gender (gender:male or gender:female).
You may specify just the first letter.  Although you can
still denote your gender using the ``male'' and ``female''
options, the ``gender'' option will take precedence.
The default is to randomly pick an appropriate gender.
If you prefix a `!' or ``no'' to the value, you can 
exclude that gender from being picked randomly.
Cannot be set with the `O' command.  Persistent.
.lp "help    "
If more information is available for an object looked at
with the `/' command, ask if you want to see it (default on). Turning help
off makes just looking at things faster, since you aren't interrupted with the
``More info?'' prompt, but it also means that you might miss some
interesting and/or important information.  Persistent.
.lp hilite_pet
Visually distinguish pets from similar animals (default off).
The behavior of this option depends on the type of windowing you use.
In text windowing, text highlighting or inverse video is often used;
with tiles, generally displays a heart symbol near pets.
.lp hilite_pile
Visually distinguish piles of objects from individual objects (default off).
The behavior of this option depends on the type of windowing you use.
In text windowing, text highlighting or inverse video is often used;
with tiles, generally displays a small plus-symbol beside the object
on the top of the pile.
.lp horsename
Name your starting horse (ex. ``horsename:Trigger'').
Cannot be set with the `O' command.
.lp hpmon
Colors your HP reading green when you attain <= 2/3 of your total HP,
yellow when you reach <= 1/3 of total, and red when you are at or below
1/10 of your total HP.
.lp ignintr
Ignore interrupt signals, including breaks (default off).  Persistent.
.lp implicit_uncursed
Omit "uncursed" from inventory lists, if possible (default on).
.lp legacy
Display an introductory message when starting the game (default on).
Persistent.
.lp lit_corridor
Show corridor squares seen by night vision or a light source held by your
character as lit (default off).  Persistent.
.lp lootabc
Use the old `a', `b', and `c' keyboard shortcuts when
looting, rather than the mnemonics `o', `i', and `b' (default off).
Persistent.
.lp "mail    "
Enable mail delivery during the game (default on).  Persistent.
.lp "male    "
An obsolete synonym for ``gender:male''.
Cannot be set with the `O' command.
.lp mention_walls
Give feedback when walking against a wall (default off).
.lp menucolors
Enable coloring menu lines (default off).
See ``Configuring Menu Colors'' on how to configure the colors.
.lp menustyle
Controls the interface used when you need to choose various objects (in
response to the Drop command, for instance).  The value specified should
be the first letter of one of the following:  traditional, combination,
full, or partial.
Traditional was the only interface available for
early versions; it consists of a prompt for object class characters,
followed by an object-by-object prompt for all items matching the selected
object class(es).
Combination starts with a prompt for object class(es)
of interest, but then displays a menu of matching objects rather than
prompting one-by-one.
Full displays a menu of
object classes rather than a character prompt, and then a menu of matching
objects for selection.
Partial skips the object class filtering and
immediately displays a menu of all objects.
Persistent.
.lp menu_deselect_all
Menu character accelerator to deselect all items in a menu.
Implemented by the Amiga, Gem, X11 and tty ports.
Default '-'.
.lp menu_deselect_page
Menu character accelerator to deselect all items on this page of a menu.
Implemented by the Amiga, Gem and tty ports.
Default '\e'.
.lp menu_first_page
Menu character accelerator to jump to the first page in a menu.
Implemented by the Amiga, Gem and tty ports.
Default '^'.
.lp menu_headings
Controls how the headings in a menu are highlighted.
Values are 'none', 'bold', 'dim', 'underline', 'blink', or 'inverse'.
Not all ports can actually display all types.
.lp menu_invert_all
Menu character accelerator to invert all items in a menu.
Implemented by the Amiga, Gem, X11 and tty ports.
Default '@'.
.lp menu_invert_page
Menu character accelerator to invert all items on this page of a menu.
Implemented by the Amiga, Gem and tty ports.
Default '~'.
.lp menu_last_page
Menu character accelerator to jump to the last page in a menu.
Implemented by the Amiga, Gem and tty ports.
Default '|'.
.lp menu_next_page
Menu character accelerator to goto the next menu page.
Implemented by the Amiga, Gem and tty ports.
Default '>'.
.lp menu_objsyms
Show object symbols in menu headings in menus where
the object symbols act as menu accelerators (default off).
.lp menu_previous_page 
Menu character accelerator to goto the previous menu page.
Implemented by the Amiga, Gem and tty ports.
Default '<'.
.lp menu_search
Menu character accelerator to search for a menu item.
Implemented by the Amiga, Gem, X11 and tty ports.
Default ':'.
.lp menu_select_all
Menu character accelerator to select all items in a menu.
Implemented by the Amiga, Gem, X11 and tty ports.
Default '.'.
.lp menu_select_page
Menu character accelerator to select all items on this page of a menu.
Implemented by the Amiga, Gem and tty ports.
Default ','.
.lp msghistory
The number of top line messages to save (and recall with ^P) (default 20).
Cannot be set with the `O' command.
.lp msg_window
Allows you to change the way recalled messages are displayed.
(It is currently implemented for tty only.)
The possible values are:
.sd
.si
.CC s "single message (default; only choice prior to 3.4.0);"
.CC c "combination, two messages as `single', then as `full';"
.CC f "full window, oldest message first;"
.CC r "full window reversed, newest message first."
.ei
.ed
For backward compatibility, no value needs to be specified (which
defaults to `full'), or it can be negated (which defaults to `single').
.lp "name    "
Set your character's name (defaults to your user name).  You can also
set your character's role by appending a dash and one or more letters of
the role (that is, by suffixing one of
.op "-A -B -C -H -K -M -P -Ra -Ro -S -T -V -W" ).
If
.op "-@"
is used for the role, then a random one will be automatically chosen.
Cannot be set with the `O' command.
.lp "news    "
Read the NetHack news file, if present (default on).
Since the news is shown at the beginning of the game, there's no point
in setting this with the `O' command.
.lp nudist
Start the character with no armor (default false).  Persistent.
.lp "null    "
Send padding nulls to the terminal (default on).  Persistent.
.lp number_pad
Use digit keys instead of letters to move (default 0 or off).
Valid settings are:
.PS -1
.PL "\ 0"
move by letters; `yuhjklbn'
.PL "\ 1"
move by numbers; digit `5' acts as `G' movement prefix
.PL "\ 2"
like 1 but `5' works as `g' prefix instead of as `G'
.PL "\ 3"
by numbers using phone key layout; 123 above, 789 below
.PL "\ 4"
combines 3 with 2; phone layout plus MSDOS compatibility
.PL "-1"
by letters but use `z' to go northwest, `y' to zap wands
.PE
For backward compatibility, omitting a value is the same as specifying 1
and negating
.op number_pad
is the same as specifying 0.
(Settings 2 and 4 are for compatibility with MSDOS or old PC Hack;
in addition to the different behavior for `5', `Alt-5' acts as `G'
and `Alt-0' acts as `I'.
Setting -1 is to accommodate some German keyboards which have the
location of the `y' and `z' keys swapped.)
When moving by numbers, to enter a count prefix for those commands
which accept one (such as ``12s'' to search twelve times), precede it
with the letter `n' (``n12s'').
.lp packorder
Specify the order to list object types in (default ``")[%?+!=/(*`0_'').
The value of this option should be a string containing the
symbols for the various object types.  Any omitted types are filled in
at the end from the previous order.
.lp paranoid_confirmation
A space separated list of specific situations where alternate
prompting is desired.  The default is paranoid_confirmation:pray.
.PS Confirm
.PL Confirm
for any prompts which are set to require "yes" rather than 'y', also
require "no" to reject instead of accepting any non-yes response as no
.PL quit
require "yes" rather than 'y' to confirm quitting
the game or switching into non-scoring explore mode;
.PL die
require "yes" rather than 'y' to confirm dying (not
useful in normal play; applies to explore mode);
.PL bones
require "yes" rather than 'y' to confirm saving
bones data when dying in debug mode;
.PL attack
require "yes" rather than 'y' to confirm attacking a peaceful monster;
.PL pray
require 'y' to confirm an attempt to pray rather
than immediately praying; on by default;
.PL wand
require "yes" rather than 'y' to confirm breaking a wand;
.PL Remove
require selection from inventory for 'R' and 'T'
commands even when wearing just one applicable item.
.PE
By default, the pray choice is enabled, the others disabled.
To disable it without setting
any of the other choices, use ``paranoid_confirmation:none''.  To keep
it enabled while setting any of the others, include it in the list,
such as ``paranoid_confirmation:attack pray Remove''.
.lp perm_invent
If true, always display your current inventory in a window.  This only
makes sense for windowing system interfaces that implement this feature.
Persistent.
.lp pettype
Specify the type of your initial pet, if you are playing a character class
that uses multiple types of pets; or choose to have no initial pet at all.
Possible values are ``cat'', ``dog'', ``horse'',
and ``none''.
If the choice is not allowed for the role you are currently playing,
it will be silently ignored.  For example, ``horse'' will only be
honored when playing a knight.
Cannot be set with the `O' command.
.lp pickup_burden
When you pick up an item that would exceed this encumbrance
level (Unencumbered, Burdened, streSsed, straiNed, overTaxed,
or overLoaded), you will be asked if you want to continue.
(Default `S').  Persistent.
.lp pickup_thrown
If this option is on and
.op autopickup
is also on, try to pick up things that you threw, even if they aren't in
.op pickup_types
or match an autopickup exception.  Default is on.  Persistent.
.lp pickup_types
Specify the object types to be picked up when
.op autopickup
is on.  Default is all types.  You can use 
.op autopickup_exception
configuration file lines to further refine
.op autopickup
behavior.  Persistent.
.lp pile_limit
When walking across a pile of objects on the floor, threshold at which
the message "there are few/several/many objects here" is given instead
of showing a popup list of those objects.  A value of 0 means "no limit"
(always list the objects); a value of 1 effectively means "never show
the objects" since the pile size will always be at least that big;
default value is 5.  Persistent.
.lp playmode
Values are `normal', `explore', or `debug'.
Allows selection of explore mode (also known as discovery mode) or debug
mode (also known as wizard mode) instead of normal play.
Debug mode might only be allowed for someone logged in under a particular
user name (on multi-user systems) or specifying a particular character
name (on single-user systems) or it might be disabled entirely.  Requesting
it when not allowed or not possible results in explore mode instead.
Default is normal play.
.lp pushweapon
Using the `w' (wield) command when already wielding
something pushes the old item into your alternate weapon slot (default off).
Likewise for the `a' (apply) command if it causes the applied item to
become wielded.  Persistent.
.lp "race    "
Selects your race (for example, ``race:human'').  Default is random.
If you prefix a `!' or ``no'' to the value, you can 
exclude that race from being picked randomly.
Cannot be set with the `O' command.  Persistent.
.lp rest_on_space
Make the space bar a synonym for the `.' (rest) command (default off).
Persistent.
.lp "role    "
Pick your type of character (ex. ``role:Samurai'');
synonym for ``character''.  See ``name'' for an alternate method
of specifying your role.  Normally only the first letter of the
value is examined; `r' is an exception with ``Rogue'', ``Ranger'',
and ``random'' values. If you prefix a `!' or ``no'' to the value, you can 
exclude that role from being picked randomly.  Persistent.
.lp roguesymset
This option may be used to select one of the named symbol sets found within
``symbols'' to alter the symbols displayed on the screen on the rogue level.
.lp rlecomp
When writing out a save file, perform run length compression of the map. 
Not all ports support run length compression. It has no
effect on reading an existing save file.
.lp runmode
Controls the amount of screen updating for the map window when engaged
in multi-turn movement (running via shift+direction or control+direction
and so forth, or via the travel command or mouse click).
The possible values are:
.PS teleport
.PL teleport
update the map after movement has finished;
.PL run
update the map after every seven or so steps;
.PL walk
update the map after each step;
.PL crawl
like walk, but pause briefly after each step.
.PE
This option only affects the game's screen display, not the actual
results of moving.  The default is `run'; versions prior to 3.4.1 
used `teleport' only.  Whether or not the effect is noticeable will
depend upon the window port used or on the type of terminal.  Persistent.
.lp safe_pet
Prevent you from (knowingly) attacking your pets (default on).  Persistent.
.lp scores
Control what parts of the score list you are shown at the end (ex.
``scores:5 top scores/4 around my score/own scores'').  Only the first
letter of each category (`t', `a', or `o') is necessary.
Persistent.
.lp showexp
Show your accumulated experience points on bottom line (default off).
Persistent.
.lp showrace
Display yourself as the glyph for your race, rather than the glyph
for your role (default off).  Note that this setting affects only
the appearance of the display, not the way the game treats you.
Persistent.
.lp showscore
Show your approximate accumulated score on bottom line (default off).
Persistent.
.lp "silent  "
Suppress terminal beeps (default on).  Persistent.
.lp sortloot
Controls the sorting behavior of the pickup lists for inventory
and #loot commands and some others.  Persistent.
The possible values are:
.PS full
.PL full
always sort the lists;
.PL loot
only sort the lists that don't use inventory letters, like with
the #loot and pickup commands;
.PL none
show lists the traditional way without sorting.
.PE
.lp sortpack
Sort the pack contents by type when displaying inventory (default on).
Persistent.
.lp sparkle
Display a sparkly effect when a monster (including yourself) is hit by an
attack to which it is resistant (default on).  Persistent.
.lp standout
Boldface monsters and ``\fB--More--\fP'' (default off).  Persistent.
.lp statushilites
Enable coloring of status fields (default off).
See ``Configuring Status Hilites'' for futher information.
.lp suppress_alert
This option may be set to a NetHack version level to suppress
alert notification messages about feature changes for that 
and prior versions (ex. ``suppress_alert:3.3.1'').
.lp symset
This option may be used to select one of the named symbol sets found within
``symbols'' to alter the symbols displayed on the screen.
.lp "time    "
Show the elapsed game time in turns on bottom line (default off).  Persistent.
.lp timed_delay
When pausing momentarily for display effect, such as with explosions and
moving objects, use a timer rather than sending extra characters to the
screen.  (Applies to ``tty'' interface only; ``X11'' interface always
uses a timer based delay.  The default is on if configured into the
program.)  Persistent.
.lp tombstone
Draw a tombstone graphic upon your death (default on).  Persistent.
.lp toptenwin
Put the ending display in a NetHack window instead of on stdout (default off).
Setting this option makes the score list visible when a windowing version
of NetHack is started without a parent window, but it no longer leaves
the score list around after game end on a terminal or emulating window.
.lp travel
Allow the travel command (default on).  Turning this option off will
prevent the game from attempting unintended moves if you make inadvertent
mouse clicks on the map window.  Persistent.
.lp verbose
Provide more commentary during the game (default on).  Persistent.
.lp windowtype
Select which windowing system to use, such as ``tty'' or ``X11''
(default depends on version).
Cannot be set with the `O' command.
.lp zerocomp
When writing out a save file, perform zero-comp compression of the 
contents. Not all ports support zero-comp compression. It has no effect 
on reading an existing save file.
.hn 2
Window Port Customization options
.pg
Here are explanations of the various options that are
used to customize and change the characteristics of the
windowtype that you have chosen.
Character strings that are too long may be truncated.
Not all window ports will adjust for all settings listed
here.  You can safely add any of these options to your config
file, and if the window port is capable of adjusting to
suit your preferences, it will attempt to do so. If it
can't it will silently ignore it.  You can find out if an
option is supported by the window port that you are currently
using by checking to see if it shows up in the Options list.
Some options are dynamic and can be specified during the game
with the `O' command.
.lp align_message
Where to align or place the message window (top, bottom, left, or right)
.lp align_status
Where to align or place the status window (top, bottom, left, or right).
.lp ascii_map
NetHack should display an ascii character map if it can.
.lp color		
NetHack should display color if it can for different monsters, 
objects, and dungeon features
.lp eight_bit_tty	
NetHack should pass eight-bit character values (for example, specified with the
.op traps
option) straight through to your terminal (default off).
.lp font_map	
NetHack should use a font by the chosen name for the map window.
.lp font_menu	
NetHack should use a font by the chosen name for menu windows.
.lp font_message	
NetHack should use a font by the chosen name for the message window.
.lp font_status	
NetHack should use a font by the chosen name for the status window.
.lp font_text	
NetHack should use a font by the chosen name for text windows.
.lp font_size_map	
NetHack should use this size font for the map window.
.lp font_size_menu	
NetHack should use this size font for menu windows.
.lp font_size_message 
NetHack should use this size font for the message window.
.lp font_size_status
NetHack should use this size font for the status window.
.lp font_size_text	
NetHack should use this size font for text windows.
.lp fullscreen
NetHack should try and display on the entire screen rather than in a window.
.lp large_font	
NetHack should use a large font.
.lp map_mode	
NetHack should display the map in the manner specified.
.lp mouse_support
Allow use of the mouse for input and travel.
.lp player_selection
NetHack should pop up dialog boxes, or use prompts for character selection.
.lp popup_dialog	
NetHack should pop up dialog boxes for input.
.lp preload_tiles
NetHack should preload tiles into memory.
For example, in the protected mode MSDOS version, control whether tiles
get pre-loaded into RAM at the start of the game.  Doing so
enhances performance of the tile graphics, but uses more memory. (default on).
Cannot be set with the `O' command.
.lp scroll_amount
NetHack should scroll the display by this number of cells
when the hero reaches the scroll_margin.
.lp scroll_margin
NetHack should scroll the display when the hero or cursor
is this number of cells away from the edge of the window.
.lp selectsaved
NetHack should display a menu of existing saved games for the player to
choose from at game startup, if it can. Not all ports support this option.
.lp softkeyboard
Display an onscreen keyboard.  Handhelds are most likely to support this option.
.lp splash_screen
NetHack should display an opening splash screen when it starts up (default yes).
.lp tiled_map	
NetHack should display a tiled map if it can.
.lp tile_file
Specify the name of an alternative tile file to override the default.
.lp tile_height
Specify the preferred height of each tile in a tile capable port.
.lp tile_width
Specify the preferred width of each tile in a tile capable port
.lp use_darkgray
Use bold black instead of blue for black glyphs (TTY only).
.lp use_inverse
NetHack should display inverse when the game specifies it.
.lp vary_msgcount
NetHack should display this number of messages at a time in
the message window.
.lp windowcolors
NetHack should display windows with the specified foreground/background
colors if it can.
.lp wraptext
NetHack port should wrap long lines of text if they don't fit in 
the visible area of the window.
.hn 2
Platform-specific Customization options
.pg
Here are explanations of options that are used by specific platforms or ports 
to customize and change the port behavior.
.lp altkeyhandler
Select an alternate keystroke handler dll to load (Win32 tty NetHack only).
The name of the handler is specified without the .dll extension and without any
path information.
Cannot be set with the `O' command.
.lp altmeta
On Amiga, this option controls whether typing `Alt' plus another key
functions as a meta-shift for that key (default on).
.lp altmeta
On other (non-Amiga) systems where this option is available, it can be
set to tell nethack to convert a two character sequence beginning with
ESC into a meta-shifted version of the second character (default off).
.lp ""
This conversion is only done for commands, not for other input prompts.
Note that typing one or more digits as a count prefix prior to a
command--preceded by \fBn\fP if the
.op number_pad
option is set--is also subject to this conversion, so attempting to
abort the count by typing ESC will leave nethack waiting for another
character to complete the two character sequence.  Type a second ESC to
finish cancelling such a count.  At other prompts a single ESC suffices.
.lp "BIOS    "
Use BIOS calls to update the screen
display quickly and to read the keyboard (allowing the use of arrow
keys to move) on machines with an IBM PC compatible BIOS ROM (default off,
OS/2, PC, and ST NetHack only).
.lp flush
(default off, AMIGA NetHack only).
.lp "MACgraphics"
(default on, Mac NetHack only).
.lp page_wait
(default on, Mac NetHack only).
.lp "rawio   "
Force raw (non-cbreak) mode for faster output and more
bulletproof input (MS-DOS sometimes treats `^P' as a printer toggle
without it) (default off, OS/2, PC, and ST NetHack only).
Note:  DEC Rainbows hang if this is turned on.
Cannot be set with the `O' command.
.lp soundcard
(default on, PC NetHack only).
Cannot be set with the `O' command.
.lp subkeyvalue
(Win32 tty NetHack only).
May be used to alter the value of keystrokes that the operating system
returns to NetHack to help compensate for international keyboard issues.
OPTIONS=subkeyvalue:171/92
will return 92 to NetHack, if 171 was originally going to be returned.
You can use multiple subkeyvalue statements in the config file if needed.
Cannot be set with the `O' command.
.lp video
Set the video mode used (PC NetHack only).
Values are `autodetect', `default', or `vga'.
Setting `vga' (or `autodetect' with vga hardware present) will cause
the game to display tiles. 
Cannot be set with the `O' command.
.lp videocolors
Set the color palette for PC systems using NO_TERMS
(default 4-2-6-1-5-3-15-12-10-14-9-13-11, (PC NetHack only).
The order of colors is red, green, brown, blue, magenta, cyan,
bright.white, bright.red, bright.green, yellow, bright.blue,
bright.magenta, and bright.cyan.
Cannot be set with the `O' command.
.lp videoshades
Set the intensity level of the three gray scales available
(default dark normal light, PC NetHack only).
If the game display is difficult to read, try adjusting these scales;
if this does not correct the problem, try !color.
Cannot be set with the `O' command.
.hn 2
Regular Expressions
.pg
Regular expressions are normally POSIX extended regular expressions. It is
possible to compile NetHack without regular expression support on a platform
where there is no regular expression library. While this is not true of any
modern platform, if your NetHack was built this way, patterns are instead glob
patterns.
.hn 2
Configuring Autopickup Exceptions
.pg
You can further refine the behavior of the
.op autopickup
option beyond what is available through the 
.op pickup_types
option. 
.pg
By placing 
.op autopickup_exception
lines in your configuration
file, you can define patterns to be checked when the game is about to
autopickup something.
.lp autopickup_exception
Sets an exception to the 
.op pickup_types
option.
The
.op autopickup_exception
option should be followed by a regular expression to be used as a pattern to
match against the singular form of the description of an object at your
location.
.lp ""
In addition, some characters are treated specially if they occur as the first 
character in the pattern, specifically:
.sd
.si
.CC < "always pickup an object that matches rest of pattern;"
.CC > "never pickup an object that matches rest of pattern."
.ei
.ed
A `never pickup' rule takes precedence over an `always pickup' rule if
both match.
.lp ""
Exceptions can be set with the `\fBO\fP' command, but ones set that way will
not be preserved across saves and restores.
.\" end of ``.lp autopickup_exception'' entry; continue enclosing page...
.\" use .lp "text" to make an unindented paragraph ("text" should be short)
.lp "Here are some examples:"
.sd
.si
autopickup_exception="<*arrow"
autopickup_exception=">*corpse"
autopickup_exception=">* cursed*"
.ei
.ed
.\" (this paragraph would look better unindented but can't use .lp hack...)
.pg
The first example above will result in autopickup of any type of arrow.
The second example results in the exclusion of any corpse from autopickup.
The last example results in the exclusion of items known to be cursed from
autopickup.
.hn 2
Configuring Message Types
.pg
You can change the way the messages are shown in the message area, when
the message matches a user-defined pattern.
.pg
In general, the config file entries to configure the message types
look like this:
.si
MSGTYPE=type "pattern"
.ei
.PS "message type"
.PL type
how the message should be shown;
.PL pattern
the pattern to match.
.PE
.lp ""
The pattern should be a regular expression.
.lp ""
Allowed types are:
.sd
.si
show  - show message normally.
hide  - never show the message.
stop  - wait for user with more-prompt.
norep - show the message once, but not again if no other message is shown in between.
.ei
.ed
.lp ""
Here's an example of message types using NetHack's internal
pattern matching facility:
.sd
.si
MSGTYPE=stop "You feel hungry."
MSGTYPE=hide "You displaced *."
.ei
.ed
specifies that whenever a message "You feel hungry" is shown,
the user is prompted with more-prompt, and a message matching
"You displaced <something>." is not shown at all.
.lp ""
The order of the defined MSGTYPE-lines is important; the last matching
rule is used. Put the general case first, exceptions below them.
.hn 2
Configuring Menu Colors
.pg
Some platforms allow you to define colors used in menu lines when the
line matches a user-defined pattern. At this time the tty, win32tty and
win32gui support this.
.pg
In general, the config file entries to configure the menu color mappings
look like this:
.si
.lp MENUCOLOR="pattern"=color&attribute
.ei
.PS "menu color"
.PL pattern
the pattern to match;
.PL color
the color to use for lines matching the pattern;
.PL attribute
the attribute to use for lines matching the pattern. The attribute is
optional, and if left out, you must also leave out the preceding ampersand.
If no attribute is defined, no attribute is used.
.PE
.lp ""
The pattern should be a regular expression.
.lp ""
Allowed colors are black, red, green, brown, blue, magenta, cyan, gray,
orange, lightgreen, yellow, lightblue, lightmagenta, lightcyan, and white.
.lp ""
Allowed attributes are none, bold, dim, underline, blink, and inverse.
Note that the platform used may interpret the attributes any way it
wants.
.lp ""
Here's an example of menu colors using NetHack's internal
pattern matching facility:
.sd
.si
MENUCOLOR="* blessed *"=green
MENUCOLOR="* cursed *"=red
MENUCOLOR="* cursed *(being worn)"=red&underline
.ei
.ed
specifies that any menu line with " blessed " contained
in it will be shown in green color, lines with " cursed " will be
shown in red, and lines with " cursed " followed by "(being worn)"
on the same line will be shown in red color and underlined.
You can have multiple MENUCOLOR entries in your config file,
and the last MENUCOLOR-line in your config file that matches
a menu line will be used for the line.
.pg
Note that if you intend to have one or more color specifications match
" uncursed ", you will probably want to turn the
.op implicit_uncursed
option off so that all items known to be uncursed are actually
displayed with the ``uncursed'' description.
.hn 2
Configuring User Sounds
.pg
Some platforms allow you to define sound files to be played when a message 
that matches a user-defined pattern is delivered to the message window.
At this time the Qt port and the win32tty and win32gui ports support the
use of user sounds.
.pg
The following config file entries are relevant to mapping user sounds
to messages:
.lp SOUNDDIR
The directory that houses the sound files to be played.
.lp SOUND
An entry that maps a sound file to a user-specified message pattern.
Each SOUND entry is broken down into the following parts:
.PS "sound file"
.PL MESG
message window mapping (the only one supported in 3.6);
.PL pattern
the pattern to match;
.PL "sound file"
the sound file to play;
.PL volume
the volume to be set while playing the sound file.
.PE
.lp ""
The pattern should be a POSIX extended regular expression.
.pg
.hn 2
Configuring Status Hilites
.pg
Your copy of NetHack may have been compiled with support for ``Status Hilites''.
If so, you can customize your game display by setting thresholds to 
change the color or appearance of fields in the status display.
.pg
For example, the following line in your config file will cause
the hitpoints field to display in the color red if your hitpoints
drop to or below a threshold of 30%:
.si
.lp "OPTION=hilite_status: hitpoints/30%/red/normal"
.ei
.pg
For another example, the following line in your config file will cause
wisdom to be displayed red if it drops and green if it rises.
.si
.lp "OPTION=hilite_status: wisdom/updown/red/green"
.ei
.pg
You can adjust the display of the following status fields:
.TS S
center;
c c c.
.\"TABLE_START
title	strength	dexterity
constitution	intelligence	wisdom
charisma	alignment	score
carrying-capacity	gold	power
power-max	experience-level	armor-class
HD	time	hunger
hitpoints	hitpoints-max	dungeon-level
experience	condition
.\"TABLE_END  Do not delete this line.
.TE
.lp ""
Allowed colors are black, red, green, brown, blue, magenta, cyan, gray,
orange, lightgreen, yellow, lightblue, lightmagenta, lightcyan, and white.
.lp ""
Allowed attributes are bold, inverse, normal.
Note that the platform used may interpret the attributes any way it
wants.
.lp ""
Behaviours can occur based on percentage thresholds, updown, or absolute values.
The in-game options menu can help you determine the correct syntax for a
config file.
.lp ""
The whole feature can be disabled by setting option statushilites off.
.pg
.hn 2
Modifying NetHack Symbols 
.pg
NetHack can load entire symbol sets from the symbol file.
.pg
The options that are used to select a particular symbol set from the
symbol file are:
.lp symset
Set the name of the symbol set that you want to load.
.lp roguesymset
Set the name of the symbol set that you want to load for display
on the rogue level.
.pg
You can also override one or more symbols using the SYMBOLS config
file option. Symbols are specified as name:value pairs. Note that
NetHack escape-processes the value string in conventional C fashion.
This means that \e is a prefix to take the following character literally. Thus
\e needs to be represented as \e\e.
The special escape form
\em switches on the meta bit in the symbol value, and the \e^ prefix causes the
following character to be treated as a control
character.
.pg
.TS S
center;
c s s
c1 l1 l.
.\"TABLE_START
NetHack Symbols
Default	Symbol Name	Description
\_	\_	\_
	S_air	(air)
\&_	S_altar	(altar)
"	S_amulet	(amulet)
A	S_angel	(angelic being)
a	S_ant	(ant or other insect)
^	S_anti_magic_trap	(anti-magic field)
[	S_armor	(suit or piece of armor)
[	S_armour	(suit or piece of armor)
^	S_arrow_trap	(arrow trap)
0	S_ball	(iron ball)
#	S_bars	(iron bars)
B	S_bat	(bat or bird)
^	S_bear_trap	(bear trap)
-	S_blcorn	(bottom left corner)
b	S_blob	(blob)
+	S_book	(spellbook)
)	S_boomleft	(boomerang open left)
(	S_boomright	(boomerang open right)
`	S_boulder	(boulder)
-	S_brcorn	(bottom right corner)
C	S_centaur	(centaur)
\&_	S_chain	(iron chain)
#	S_cloud	(cloud)
c	S_cockatrice	(cockatrice)
$	S_coin	(pile of coins)
#	S_corr	(corridor)
-	S_crwall	(wall)
^	S_dart_trap	(dart trap)
&	S_demon	(major demon)
*	S_digbeam	(dig beam)
>	S_dnladder	(ladder down)
>	S_dnstair	(staircase down)
d	S_dog	(dog or other canine)
D	S_dragon	(dragon)
;	S_eel	(sea monster)
E	S_elemental	(elemental)
/	S_explode1	(explosion top left)
-	S_explode2	(explosion top center)
`\e'	S_explode3	(explosion top right)
|	S_explode4	(explosion middle left)
	S_explode5	(explosion middle center)
|	S_explode6	(explosion middle right)
`\e'	S_explode7	(explosion bottom left)
-	S_explode8	(explosion bottom center)
/	S_explode9	(explosion bottom right)
e	S_eye	(eye or sphere)
^	S_falling_rock_trap	(falling rock trap)
f	S_feline	(cat or other feline)
^	S_fire_trap	(fire trap)
!	S_flashbeam	(flash beam)
%	S_food	(piece of food)
{	S_fountain	(fountain)
F	S_fungus	(fungus or mold)
*	S_gem	(gem or rock)
	S_ghost	(ghost)
H	S_giant	(giant humanoid)
G	S_gnome	(gnome)
'	S_golem	(golem)
|	S_grave	(grave)
g	S_gremlin	(gremlin)
-	S_hbeam	(wall)
#	S_hcdbridge	(horizontal raised drawbridge)
+	S_hcdoor	(closed door)
.	S_hodbridge	(horizontal lowered drawbridge)
|	S_hodoor	(open door)
^	S_hole	(hole)
@	S_human	(human or elf)
h	S_humanoid	(humanoid)
-	S_hwall	(horizontal wall)
.	S_ice	(ice)
i	S_imp	(imp or minor demon)
J	S_jabberwock	(jabberwock)
j	S_jelly	(jelly)
k	S_kobold	(kobold)
K	S_kop	(Keystone Kop)
^	S_land_mine	(land mine)
}	S_lava	(molten lava)
l	S_leprechaun	(leprechaun)
^	S_level_teleporter	(level teleporter)
L	S_lich	(lich)
y	S_light	(light)
#	S_litcorr	(lit corridor)
:	S_lizard	(lizard)
`\e'	S_lslant	(wall)
^	S_magic_portal	(magic portal)
^	S_magic_trap	(magic trap)
m	S_mimic	(mimic)
]	S_mimic_def	(mimic)
M	S_mummy	(mummy)
N	S_naga	(naga)
.	S_ndoor	(doorway)
n	S_nymph	(nymph)
O	S_ogre	(ogre)
o	S_orc	(orc)
p	S_piercer	(piercer)
^	S_pit	(pit)
#	S_poisoncloud	(poison cloud)
^	S_polymorph_trap	(polymorph trap)
}	S_pool	(water)
!	S_potion	(potion)
P	S_pudding	(pudding or ooze)
q	S_quadruped	(quadruped)
Q	S_quantmech	(quantum mechanic)
\&=	S_ring	(ring)
`	S_rock	(boulder or statue)
r	S_rodent	(rodent)
^	S_rolling_boulder_trap	(rolling boulder trap)
.	S_room	(floor of a room)
/	S_rslant	(wall)
^	S_rust_trap	(rust trap)
R	S_rustmonst	(rust monster or disenchanter)
?	S_scroll	(scroll)
#	S_sink	(sink)
^	S_sleeping_gas_trap	(sleeping gas trap)
S	S_snake	(snake)
s	S_spider	(arachnid or centipede)
^	S_spiked_pit	(spiked pit)
^	S_squeaky_board	(squeaky board)
0	S_ss1	(magic shield 1 of 4)
#	S_ss2	(magic shield 2 of 4)
@	S_ss3	(magic shield 3 of 4)
*	S_ss4	(magic shield 4 of 4)
^	S_statue_trap	(statue trap)
	S_stone	(dark part of a room)
-	S_sw_bc	(swallow bottom center)
`\e'	S_sw_bl	(swallow bottom left)
/	S_sw_br	(swallow bottom right)
|	S_sw_ml	(swallow middle left)
|	S_sw_mr	(swallow middle right)
-	S_sw_tc	(swallow top center)
/	S_sw_tl	(swallow top left)
`\e'	S_sw_tr	(swallow top right)
-	S_tdwall	(wall)
^	S_teleportation_trap	(teleportation trap)
\	S_throne	(opulent throne)
-	S_tlcorn	(top left corner)
|	S_tlwall	(wall)
(	S_tool	(useful item (pick-axe\, key\, lamp...))
^	S_trap_door	(trap door)
t	S_trapper	(trapper or lurker above)
-	S_trcorn	(top right corner)
#	S_tree	(tree)
T	S_troll	(troll)
|	S_trwall	(wall)
-	S_tuwall	(wall)
U	S_umber	(umber hulk)
u	S_unicorn	(unicorn or horse)
<	S_upladder	(ladder up)
<	S_upstair	(staircase up)
V	S_vampire	(vampire)
|	S_vbeam	(wall)
#	S_vcdbridge	(vertical raised drawbridge)
+	S_vcdoor	(closed door)
.	S_venom	(splash of venom)
^	S_vibrating_square	(vibrating square)
.	S_vodbridge	(vertical lowered drawbridge)
-	S_vodoor	(open door)
v	S_vortex	(vortex)
|	S_vwall	(vertical wall)
/	S_wand	(wand)
}	S_water	(water)
)	S_weapon	(weapon)
"	S_web	(web)
w	S_worm	(worm)
~	S_worm_tail	(long worm tail)
W	S_wraith	(wraith)
x	S_xan	(xan or other mythical/fantastic insect)
X	S_xorn	(xorn)
Y	S_yeti	(apelike creature)
Z	S_zombie	(zombie)
z	S_zruty	(zruty)
.\"TABLE_END  Do not delete this line.
.TE
.pg
.hn 2
Configuring NetHack for Play by the Blind
.pg
NetHack can be set up to use only standard ASCII characters for making
maps of the dungeons. This makes the MS-DOS versions of NetHack completely
accessible to the blind who use speech and/or Braille access technologies.
Players will require a good working knowledge of their screen-reader's
review features, and will have to know how to navigate horizontally and
vertically character by character. They will also find the search
capabilities of their screen-readers to be quite valuable. Be certain to
examine this Guidebook before playing so you have an idea what the screen
layout is like. You'll also need to be able to locate the PC cursor. It is
always where your character is located. Merely searching for an @-sign will
not always find your character since there are other humanoids represented
by the same sign. Your screen-reader should also have a function which
gives you the row and column of your review cursor and the PC cursor.
These co-ordinates are often useful in giving players a better sense of the
overall location of items on the screen.
.pg
While it is not difficult for experienced users to edit the \fBdefaults.nh\fP
file to accomplish this, novices may find this task somewhat daunting.
Included within the ``symbols'' file of all official distributions of NetHack 
is a symset called \fBNHAccess\fP.  Selecting that symset in your
configuration file will cause the game to run in a manner accessible 
to the blind. After you have gained some experience with the game 
and with editing files, you may want to alter settings via \fBSYMBOLS=\fP 
in your configuration file to better suit your preferences. 
The most crucial settings to make the game accessible are:
.pg
.lp symset:NHAccess
Load a symbol set appropriate for use by blind players.
.lp roguesymset:NHAccess
Load a symbol set for the rogue level that is appropriate for 
use by blind players.
.lp menustyle:traditional
This will assist in the interface to speech synthesizers.
.lp number_pad
A lot of speech access programs use the number-pad to review the screen.
If this is the case, disable the number_pad option and use the traditional
Rogue-like commands.
.hn 2
Global Configuration for System Administrators
.pg
If NetHack is compiled with the SYSCF option, a system administrator
should set up a global configuration; this is a file in the
same format as the traditional per-user configuration file (see above).
This file should be named sysconf and placed in the same directory as
the other NetHack support files.
The options recognized in this file are listed below.  Any option not
set uses a compiled-in default (which may not be appropriate for your
system).
.pg
.lp
WIZARDS
A space-separated list of user names who are allowed to play in wizard
mode (the debugging mode, not the magic-using role).  A value of a single
asterisk (*) allows anyone to start a game in wizard mode.
.lp
SHELLERS
A list of users who are allowed to use the shell escape command (!).  The
syntax is the same as WIZARDS.
.lp
EXPLORERS
A list of users who are allowed to use the explore mode.  The
syntax is the same as WIZARDS.
.lp
MAXPLAYERS
Limit the maximum number of games that can be running at the same time.
.lp
SUPPORT
A string explaining how to get local support (no default value).
.lp
RECOVER
A string explaining how to recover a game on this system (no default value).
.lp
SEDUCE
0 or 1 to disable or enable, respectively, the SEDUCE option (see the source
for details on this function).
.lp
CHECK_SAVE_UID
0 or 1 to disable or enable, respectively, the UID checking for savefiles.
.pg
The following options affect the score file:
.pg
.lp
PERSMAX
Maximum number of entries for one person.
.lp
ENTRYMAX
Maximum number of entries in the score file.
.lp
POINTSMIN
Minimum number of points to get an entry in the score file.
.lp
PERS_IS_UID
0 or 1 to use user names or numeric userids, respectively, to identify
unique people for the score file.
.lp
MAX_STATUENAME_RANK
Maximum number of score file entries to use for random statue names
(default is 10).
.hn 1
Scoring
.pg
NetHack maintains a list of the top scores or scorers on your machine,
depending on how it is set up.  In the latter case, each account on
the machine can post only one non-winning score on this list.  If
you score higher than someone else on this list, or better your
previous score, you will be inserted in the proper place under your
current name.  How many scores are kept can also be set up when
NetHack is compiled.
.pg
Your score is chiefly based upon how much experience you gained, how
much loot you accumulated, how deep you explored, and how the game
ended.  If you quit the game, you escape with all of your gold intact.
If, however, you get killed in the Mazes of Menace, the guild will
only hear about 90% of your gold when your corpse is discovered
(adventurers have been known to collect finder's fees).  So, consider
whether you want to take one last hit at that monster and possibly
live, or quit and stop with whatever you have.  If you quit, you keep
all your gold, but if you swing and live, you might find more.
.pg
If you just want to see what the current top players/games list is, you
can type \fBnethack -s all\fP on most versions.

.hn 1
Explore mode
.pg
NetHack is an intricate and difficult game.  Novices might falter
in fear, aware of their ignorance of the means to survive.  Well, fear
not.  Your dungeon comes equipped with an ``explore'' or ``discovery''
mode that enables you to keep old save files and cheat death, at the
paltry cost of not getting on the high score list.
.pg
There are two ways of enabling explore mode.  One is to start the game
with the
.op -X
command-line switch or with the
.op playmode:explore
option.  The other is to issue the ``#exploremode'' extended command while
already playing the game.  Starting a new game in explore mode provides your
character with a wand of wishing in initial inventory; switching
during play does not.  The other benefits of explore mode are left for
the trepid reader to discover.
.pg
.hn 2
Debug mode
.pg
Debug mode, also known as wizard mode, is undocumented aside from this
brief description.  It is intended for tracking down problems within the
program rather than to provide god-like powers to your character, and
players who attempt debugging are expected to figure out how to use it
themselves.  It is initiated by starting the game with the
.op -D
command-line switch or with the
.op playmode:debug
option.
.pg
For some systems, the player must be logged in
under a particular user name to be allowed to use debug mode; for others,
the hero must be given a particular character name (but may be any role;
there's no connection between ``wizard mode'' and the Wizard role).
And on any system, the program might have been configured to omit debug
mode entirely.  Attempting to start a game in debug mode when not allowed
or not available will result in falling back to explore mode instead.

.hn
Credits
.pg
The original \fIhack\fP game was modeled on the Berkeley 
.ux
\fIrogue\fP game.  Large portions of this paper were shamelessly
cribbed from \fIA Guide to the Dungeons of Doom\fP, by Michael C. Toy
and Kenneth C. R. C. Arnold.  Small portions were adapted from
\fIFurther Exploration of the Dungeons of Doom\fP, by Ken Arromdee.
.pg
NetHack is the product of literally dozens of people's work.
Main events in the course of the game development are described below:

.pg
\fBJay Fenlason\fP wrote the original Hack, with help from
\fBKenny Woodland\fP, \fBMike Thome\fP and \fBJon Payne\fP.
.pg
\fBAndries Brouwer\fP did a major re-write, transforming Hack into a
very different game, and published (at least) three versions (1.0.1,
1.0.2, and 1.0.3) for
.ux
machines to the Usenet.
.pg
\fBDon G. Kneller\fP ported Hack 1.0.3 to Microsoft C and MS-DOS, producing PC
HACK 1.01e, added support for DEC Rainbow graphics in version 1.03g, and went
on to produce at least four more versions (3.0, 3.2, 3.51, and 3.6).
.pg
\fBR. Black\fP ported PC HACK 3.51 to Lattice C and the Atari 520/1040ST,
producing ST Hack 1.03.
.pg
\fBMike Stephenson\fP merged these various versions back together,
incorporating many of the added features, and produced NetHack 1.4.
He then coordinated a cast of thousands in enhancing and debugging
NetHack 1.4 and released NetHack versions 2.2 and 2.3.
.pg
Later, Mike coordinated a major rewrite of the game, heading a
team which included \fBKen Arromdee\fP, \fBJean-Christophe Collet\fP, \fBSteve
Creps\fP, \fBEric Hendrickson\fP, \fBIzchak Miller\fP, \fBJohn Rupley\fP,
\fBMike Threepoint\fP, and \fBJanet Walz\fP, to produce NetHack 3.0c.
.pg
NetHack 3.0 was ported to the Atari by \fBEric R. Smith\fP, to OS/2 by
\fBTimo Hakulinen\fP, and to VMS by \fBDavid Gentzel\fP.  The three of them
and \fBKevin Darcy\fP later joined the main development team to produce
subsequent revisions of 3.0.
.pg
\fBOlaf Seibert\fP ported NetHack 2.3 and 3.0 to the Amiga.
\fBNorm Meluch\fP, \fBStephen Spackman\fP and \fBPierre Martineau\fP designed
overlay code for PC NetHack 3.0.  \fBJohnny Lee\fP ported
NetHack 3.0 to the Macintosh.  Along with various other Dungeoneers, they
continued to enhance the PC, Macintosh, and Amiga ports through the later
revisions of 3.0.
.pg
Headed by \fBMike Stephenson\fP and coordinated by \fBIzchak Miller\fP and
\fBJanet Walz\fP, the development team which now included \fBKen Arromdee\fP,
\fBDavid Cohrs\fP, \fBJean-Christophe Collet\fP, \fBKevin Darcy\fP,
\fBMatt Day\fP, \fBTimo Hakulinen\fP, \fBSteve Linhart\fP, \fBDean Luick\fP,
\fBPat Rankin\fP, \fBEric Raymond\fP, and \fBEric Smith\fP undertook a radical
revision of 3.0.  They re-structured the game's design, and re-wrote major
parts of the code.  They added multiple dungeons, a new display, special
individual character quests, a new endgame and many other new features, and
produced NetHack 3.1.
.pg
\fBKen Lorber\fP, \fBGregg Wonderly\fP and \fBGreg Olson\fP, with help
from \fBRichard Addison\fP, \fBMike Passaretti\fP, and \fBOlaf Seibert\fP,
developed NetHack 3.1 for the Amiga.
.pg
\fBNorm Meluch\fP and \fBKevin Smolkowski\fP, with help from
\fBCarl Schelin\fP, \fBStephen Spackman\fP, \fBSteve VanDevender\fP,
and \fBPaul Winner\fP, ported NetHack 3.1 to the PC.
.pg
\fBJon W{tte\fP and \fBHao-yang Wang\fP, with help from \fBRoss Brown\fP,
\fBMike Engber\fP, \fBDavid Hairston\fP, \fBMichael Hamel\fP,
\fBJonathan Handler\fP, \fBJohnny Lee\fP, \fBTim Lennan\fP, \fBRob Menke\fP,
and \fBAndy Swanson\fP, developed NetHack 3.1 for the Macintosh,
porting it for MPW.  Building on their development, \fBBarton House\fP
added a Think C port.
.pg
\fBTimo Hakulinen\fP ported NetHack 3.1 to OS/2.  \fBEric Smith\fP
ported NetHack 3.1 to the Atari.  \fBPat Rankin\fP, with help from
\fBJoshua Delahunty\fP, was responsible for the VMS version of NetHack 3.1.
\fBMichael Allison\fP ported NetHack 3.1 to Windows NT.
.pg
\fBDean Luick\fP, with help from \fBDavid Cohrs\fP, developed NetHack
3.1 for X11.
\fBWarwick Allison\fP wrote a tiled version of NetHack for the Atari;
he later contributed the tiles to the DevTeam and tile support was
then added to other platforms.
.pg
The 3.2 development team, comprised of \fBMichael Allison\fP, \fBKen
Arromdee\fP, \fBDavid Cohrs\fP, \fBJessie Collet\fP, \fBSteve Creps\fP,
\fBKevin Darcy\fP, \fBTimo Hakulinen\fP, \fBSteve Linhart\fP, \fBDean
Luick\fP, \fBPat Rankin\fP, \fBEric Smith\fP, \fBMike Stephenson\fP,
\fBJanet Walz\fP, and \fBPaul Winner\fP, released version 3.2 in April of
1996.
.pg
Version 3.2 marked the tenth anniversary of the formation of the development
team.  In a testament to their dedication to the game, all thirteen members
of the original development team remained on the team at the start of work
on that release.  During the interval between the release of 3.1.3
and 3.2, one of the founding members of the development team, \fBDr. Izchak
Miller\fP, was diagnosed with cancer and passed away.  That release of the
game was dedicated to him by the development and porting teams.
.pg
During the lifespan of NetHack 3.1 and 3.2, several enthusiasts
of the game added
their own modifications to the game and made these ``variants'' publicly
available:
.pg
\fBTom Proudfoot\fP and \fBYuval Oren\fP created NetHack++,
which was quickly renamed NetHack--.
Working independently, \fBStephen White\fP wrote NetHack Plus.
\fBTom Proudfoot\fP later merged NetHack Plus
and his own NetHack-- to produce SLASH.
\fBLarry Stewart-Zerba\fP and \fBWarwick Allison\fP improved the spell
casting system with the Wizard Patch.
\fBWarwick Allison\fP also ported NetHack to use the Qt interface.
.pg
\fBWarren Cheung\fP combined SLASH with the Wizard Patch to produce Slash'em,
and with the help of \fBKevin Hugo\fP, added more features.
Kevin later joined the
DevTeam and incorporated the best of these ideas in NetHack 3.3.
.pg
The final update to 3.2 was the bug fix release 3.2.3, which was released
simultaneously with 3.3.0 in December 1999 just in time for the Year 2000.
.pg
The 3.3 development team, consisting of \fBMichael Allison\fP, \fBKen Arromdee\fP, 
\fBDavid Cohrs\fP, \fBJessie Collet\fP, \fBSteve Creps\fP, \fBKevin Darcy\fP, 
\fBTimo Hakulinen\fP, \fBKevin Hugo\fP, \fBSteve Linhart\fP, \fBKen Lorber\fP, 
\fBDean Luick\fP, \fBPat Rankin\fP, \fBEric Smith\fP, \fBMike Stephenson\fP, 
\fBJanet Walz\fP, and \fBPaul Winner\fP, released 3.3.0 in 
December 1999 and 3.3.1 in August of 2000.
.pg
Version 3.3 offered many firsts. It was the first version to separate race 
and profession. The Elf class was removed in preference to an elf race, 
and the races of dwarves, gnomes, and orcs made their first appearance in 
the game alongside the familiar human race.  Monk and Ranger roles joined 
Archeologists, Barbarians, Cavemen, Healers, Knights, Priests, Rogues, Samurai, 
Tourists, Valkyries and of course, Wizards.  It was also the first version
to allow you to ride a steed, and was the first version to have a publicly 
available web-site listing all the bugs that had been discovered.  Despite 
that constantly growing bug list, 3.3 proved stable enough to last for
more than a year and a half.
.pg
The 3.4 development team initially consisted of
\fBMichael Allison\fP, \fBKen Arromdee\fP,
\fBDavid Cohrs\fP, \fBJessie Collet\fP, \fBKevin Hugo\fP, \fBKen Lorber\fP,
\fBDean Luick\fP, \fBPat Rankin\fP, \fBMike Stephenson\fP, 
\fBJanet Walz\fP, and \fBPaul Winner\fP, with \fB Warwick Allison\fP joining 
just before the release of NetHack 3.4.0 in March 2002.
.pg
As with version 3.3, various people contributed to the game as a whole as
well as supporting ports on the different platforms that NetHack runs on:
.pg
\fBPat Rankin\fP maintained 3.4 for VMS.
.pg
\fBMichael Allison\fP maintained NetHack 3.4 for the MS-DOS platform.  \fBPaul Winner\fP
and \fBYitzhak Sapir\fP provided encouragement.
.pg
\fBDean Luick\fP, \fBMark Modrall\fP, and \fBKevin Hugo\fP maintained and enhanced the
Macintosh port of 3.4.
.pg
\fBMichael Allison\fP, \fBDavid Cohrs\fP, \fBAlex Kompel\fP, \fBDion Nicolaas\fP, and 
\fBYitzhak Sapir\fP maintained and enhanced 3.4 for the Microsoft Windows platform.
\fBAlex Kompel\fP contributed a new graphical interface for the Windows port. 
\fBAlex Kompel\fP also contributed a Windows CE port for 3.4.1.
.pg
\fBRon Van Iwaarden\fP was the sole maintainer of NetHack for OS/2 the past
several releases. Unfortunately Ron's last OS/2 machine stopped working in
early 2006. A great many thanks to Ron for keeping NetHack alive on OS/2 
all these years.
.pg
\fBJanne Salmijarvi\fP and \fBTeemu Suikki\fP maintained and 
enhanced the Amiga port of 3.4 after \fBJanne Salmijarvi\fP resurrected 
it for 3.3.1.
.pg
\fBChristian ``Marvin'' Bressler\fP maintained 3.4 for the Atari after he 
resurrected it for 3.3.1.
.pg
The release of NetHack 3.4.3 in December 2003 marked the beginning of a 
long release hiatus. 3.4.3 proved to be a remarkably stable version that
provided continued enjoyment by the community for more than a decade. The 
devteam slowly and quietly continued to work on the game behind the scenes 
during the tenure of 3.4.3. It was during that same period that several new 
variants emerged within the NetHack community. Notably sporkhack by 
\fBDerek S. Ray\fP, unnethack by \fBPatric Mueller\fP, nitrohack and its 
successors originally by \fBDaniel Thaler\fP and then by \fBAlex Smith\fP, 
and Dynahack by \fBTung Nguyen\fP. Some of those variants continue to be 
developed, maintained, and enjoyed by the community to this day.
.pg
At the beginning of development for what would eventually get released
as 3.6.0, the development team consisted of \fBWarwick Allison\fP, 
\fBMichael Allison\fP, \fBKen Arromdee\fP,
\fBDavid Cohrs\fP, \fBJessie Collet\fP, 
\fBKen Lorber\fP, \fBDean Luick\fP, \fBPat Rankin\fP, 
\fBMike Stephenson\fP, \fBJanet Walz\fP, and \fBPaul Winner\fP.
Leading up to the release of 3.6.0 in early 2015, new members
\fBSean Hunt\fP, \fBPasi Kallinen\fP, and \fBDerek S. Ray\fP
joined the NetHack development team.
.pg
In September 2014, an interim snapshot of the code under development was 
released publicly by other parties. Since that code was a work-in-progress 
and had not gone through the process of debugging it as a suitable release,
it was decided that the version numbers present on that code snapshot would
be retired and never used in an official NetHack release. An announcement
was posted on the devteam's official nethack.org website to that effect,
stating that there would never be a 3.4.4, 3.5, or 3.5.0 official release
version.
.pg
In November 2014, preparation began for the release of NetHack 3.6. The 3.6
version merges work done by the development team since the previous release
with some of the beloved community patches. Many bugs were fixed and a
large amount of code was restructured.
.pg
\fBThe development team, as well as \fBSteve VanDevender\fP and 
\fBKevin Smolkowski\fP ensured that NetHack 3.6.0 continued to operate on 
various Unix flavors and maintained the X11 interface. 
.pg
\fBKen Lorber\fP, \fBHaoyang Wang\fP, \fBPat Rankin\fP, and \fBDean Luick\fP 
maintained the port of NetHack 3.6.0 for Mac.
.pg
\fBMichael Allison\fP, \fBDerek S. Ray\fP, \fBYitzhak Sapir\fP, 
\fBAlex Kompel\fP, and \fBDion Nicolaas\fP maintained the port of 
NetHack 3.6.0 for Microsoft Windows.
.pg
The official NetHack web site is maintained by \fBKen Lorber\fP at http://www.nethack.org/.
.pg
SHOUT-OUTS
.pg
The devteam would like to give a special "shout-out" to thank the generous 
people primarily responsible for the public NetHack servers available for 
playing the game at nethack.alt.org and devnull.net. In addition to providing 
a way for the public to play a game of NetHack from almost anywhere, they 
have hosted annual NetHack tournaments for many, many years. 
.pg 
On behalf of the NetHack community, thank you very much to 
\fBM. Drew Streib\fP, \fBPasi Kallinen\fP and \fBRobin Bandy\fP.
.pg
			   - - - - - - - - - -
.pg
From time to time, some depraved individual out there in netland sends a
particularly intriguing modification to help out with the game.  The Gods of
the Dungeon sometimes make note of the names of the worst of these miscreants
in this, the list of Dungeoneers:

.TS S
center;
c c c.
.\"TABLE_START
Adam Aronow	Janet Walz	Nathan Eady
Alex Kompel	Janne Salmijarvi	Norm Meluch
Andreas Dorn	Jean-Christophe Collet	Olaf Seibert
Andy Church	Jeff Bailey	Pasi Kallinen
Andy Swanson	Jochen Erwied	Pat Rankin
Ari Huttunen	John Kallen	Paul Winner
Barton House	John Rupley	Pierre Martineau
Benson I. Margulies	John S. Bien	Ralf Brown
Bill Dyer	Johnny Lee	Ray Chason
Boudewijn Waijers	Jon W{tte	Richard Addison
Bruce Cox	Jonathan Handler	Richard Beigel
Bruce Holloway	Joshua Delahunty	Richard P. Hughey
Bruce Mewborne	Keizo Yamamoto	Rob Menke
Carl Schelin	Ken Arnold	Robin Bandy
Chris Russo	Ken Arromdee	Robin Johnson
David Cohrs	Ken Lorber	Roderick Schertler
David Damerell	Ken Washikita	Roland McGrath
David Gentzel	Kevin Darcy	Ron Van Iwaarden
David Hairston	Kevin Hugo	Ronnen Miller
Dean Luick	Kevin Sitze	Ross Brown
Del Lamb	Kevin Smolkowski	Sascha Wostmann
Derek S. Ray	Kevin Sweet	Scott Bigham
Deron Meranda	Lars Huttar	Scott R. Turner
Dion Nicolaas	Leon Arnott	Sean Hunt
Dylan O'Donnell	M. Drew Streib	Stephen Spackman
Eric Backus	Malcolm Ryan	Stefan Thielscher
Eric Hendrickson	Mark Gooderum	Stephen White
Eric R. Smith	Mark Modrall	Steve Creps
Eric S. Raymond	Marvin Bressler	Steve Linhart
Erik Andersen	Matthew Day	Steve VanDevender
Frederick Roeber	Merlyn LeRoy	Teemu Suikki
Gil Neiger	Michael Allison	Tim Lennan
Greg Laskin	Michael Feir	Timo Hakulinen
Greg Olson	Michael Hamel	Tom Almy
Gregg Wonderly	Michael Sokolov	Tom West
Hao-yang Wang	Mike Engber	Warren Cheung
Helge Hafting	Mike Gallop	Warwick Allison
Irina Rempt-Drijfhout	Mike Passaretti	Yitzhak Sapir
Izchak Miller	Mike Stephenson
J. Ali Harlow	Mikko Juola
.\"TABLE_END  Do not delete this line.
.TE

.\"Microsoft and MS-DOS are registered trademarks of Microsoft Corporation.
.\"Lattice is a trademark of Lattice, Inc.
.\"Atari and 1040ST are trademarks of Atari, Inc.
.\"AMIGA is a trademark of Commodore-Amiga, Inc.
.sm "Brand and product names are trademarks or registered trademarks \
of their respective holders."