-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharogue77.html
1328 lines (1212 loc) · 45.2 KB
/
arogue77.html
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
<!-- Advanced Rogue -->
<!-- Copyright (C) 1984, 1985, 1986 Michael Morgan, Ken Dalka and AT&T -->
<!-- All rights reserved. -->
<!-- -->
<!-- Based on "Rogue: Exploring the Dungeons of Doom" -->
<!-- Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman -->
<!-- All rights reserved. -->
<!-- -->
<!-- See the file LICENSE.TXT for full copyright and licensing information. -->
<!-- Creator : groff version 1.18.1 -->
<!-- CreationDate: Sat Jan 21 09:55:23 2006 -->
<h1 align="center"><a href="http://roguelike.sourceforge.net/arogue77">The Dungeons of Doom</a></h1>
<br>
<h2 align="center">Toolchest</h2>
<h3 align="center">http://roguelike.sourceforge.net/arogue77</h3>
<br>
<table border="0" cellpadding="3" cellspacing="3" style="border-collapse: collapse" id="table1" align=center>
<tr>
<td nowrap>
Advanced Rogue<br>
Copyright (C) 1984, 1985, 1986 Michael Morgan, Ken Dalka and AT&T<br>
All rights reserved.
</td>
</tr>
<tr>
<td nowrap>
Based on "Rogue: Exploring the Dungeons of Doom"<br>
Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman<br>
All rights reserved.
</td>
</tr>
</table>
<p align="center">See the file LICENSE.TXT for full copyright and licensing information.</p>
<h2 align="justify">1. Introduction</h2>
<p align="justify">
Rogue is a screen-oriented fantasy game set in the
ever-changing Dungeons of Doom. The game comes complete
with monsters, spells, weapons, armor, potions, and other
magical items. The dungeon's geography changes with every
game, and although many magical items have certain
identifiable properties, such as turning the player
invisible, the physical manifestation of the magic changes
each game. A red potion, for example, will cause the same
reaction throughout a given game, but it may be a completely
different potion in a new game.
</p>
<p align=justify>
Entering the dungeon with only a little food, armor,
and a weapon, the player must develop a good strategy of
when to fight, when to run, and how to best use any magical
items found in the dungeon. To make things interesting, the
player has a quest to return one of several unique
artifacts, rumored to lie deep in the dungeon's bowels.
Returning with this artifact brings great glory and the
title of Complete Winner. But even after finding the
artifact, the player may wish to continue further to match
wits with an arch-devil, demon prince, or even a deity found
far down in the dungeon. Defeating such a creature will
gain the player many experience points, the basis for
scoring in Rogue.
</p>
<p align=justify>
It is very difficult to return from the Dungeons of
Doom. Few people ever make it out alive. Should this
unlikely event occur, the player would be proclaimed a
complete winner and handsomely rewarded for any booty
removed from the dungeon.
</p>
<h3 align="justify">2. Character Classes</h3>
<p align="justify">
Before placing the player in the dungeon, the game
requests the player to select what type of character they
would like to be: a fighter, a magic user, a cleric, a
druid, a thief, a paladin, a ranger, a monk, or an assassin.
</p>
<p align="justify"><span style="font-variant: small-caps"><strong>2.1 The Fighter</strong></span></p>
<p align="justify">
A fighter is very strong and will have a high strength
rating. This great strength gives a fighter the best odds
of winning a battle with a monster. At high experience
levels the fighter also gets to attack multiple times in a
single turn. This obviously further increases his chances
at winning battles. Intrinsic to the fighter class is a
robustness which results in 1 to 12 extra hit points for
every new experience level.
</p>
<p align="justify"><span style="font-variant: small-caps"><strong>2.2 The Magician</strong></span></p>
<p align="justify">
A Magician is able to "cast" spells. The number and
variety of spells increases as the magician gains experience
and intelligence. Magic users are not as hearty as
fighters; they receive 1 to 6 extra hit points for every new
experience level.</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.3 The Cleric</span></strong></p>
<p align="justify">
A cleric is able to "pray" to his god for help. The
number and variety of prayers which the gods are willing to
grant to a cleric increase as the cleric gains experience
and wisdom.
</p>
<p align=justify>
Because of their religious nature, clerics can also
affect the "undead" beings, like zombies and ghouls, which
became monsters after they died. If an "undead" creature is
next to a cleric, the cleric may try to turn it and cause it
to flee. If the cleric is sufficiently powerful relative to
the monster, the cleric will destroy it. This ability
increases as the character gains experience levels.
</p>
<p align=justify>
Clerics can gain from 1 to 8 extra hit points on
reaching a new experience level.</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.4 The Druid</span></strong></p>
<p align="justify">
The druid is a cleric of sorts but worships nature
rather than a god. The druid is able to "chant" and thereby
recieve certain types of spells. Most of the chants are
targeted more towards the elements and nature.
</p>
<p align=justify>
Druids gain from 1 to 8 hit points when they gain an
experience level.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.5 The Thief</span></strong></p>
<p align="justify">
A thief is exceptionally dextrous and has a good chance
to set a trap or rob a monster.
</p>
<p align=justify>
By their nature, thieves can automatically detect all
the gold on the current level of the dungeon. They are also
good at detecting hidden traps. Because thieves slink
along, they are not as likely as other characters to wake
sleeping monsters. If a thief manages to sneak up on a
creature without waking it, he will get a chance to backstab
the monster. When this is done, the damage done by the thief
greatly increases based on his experience level.
</p>
<p align=justify>
Thieves gain from 1 to 6 extra hit points from a new
experience level.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.6 The Paladin</span></strong></p>
<p align="justify">
The paladin is a type of holy warrior. Somewhat of a
cross between a fighter and a cleric. He is able to pray and
turn undead as a cleric, (but to a lesser degree) but fights
as a fighter. He is on the side of all that is good and
righteous. Therefore he would never attack a creature that
would not attack him first. If he does kill a non-violent
creature inadvertantly he will feel "uneasy" and his god may
retaliate by making him a mere fighter.
</p>
<p align=justify>
Paladins gain 1 to 10 hit points per experience level.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.7 The Ranger</span></strong></p>
<p align="justify">
The ranger is somewhat of a cross between a druid and a
fighter. He too is on the side of righteousness and good.
Therefore, the same same restrictions apply to his as they
do to a paladin. The ranger can "chant" and "cast" but to a
lesser degree than the druid and magician.
</p>
<p align=justify>
Rangers gain 1 to 8 hit points per experience level.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.8 The Monk</span></strong></p>
<p align="justify">
The Monk is a martial arts expert. He wears no armor
but has an effective armor class based on his ability to
dodge attacks. He does not need a weapon in combat for his
hands and feet are a formidable weapon. His ability to dodge
and use his hands as weapons increases as he gains in level.
</p>
<p align=justify>
Monks gain 1 to 6 hit points per experience level.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">2.9 The Assassin</span></strong></p>
<p align="justify">
The assassin is a person trained in the art of killing
people by surprise. He has most of the abilities of the
thief except the "backstab". Instead, the assassin has the
chance to kill an opponent outright with one strike. He is
also a ruthless character and trained in the use of poison.
He can recognize poison on sight and can coat his weapon
with it thereby making his next attack an exceptionally
lethal one.
</p>
<p align=justify>
Assassins gain 1 to 6 hit points per experience level.
</p>
<h3 align="justify">3. ATTRIBUTES</h3>
<p align="justify"><strong><span style="font-variant: small-caps">3.1 Intelligence</span></strong></p>
<p align="justify">Intelligence is the primary attribute associated with
casting spells. With higher intelligence comes the knowledge
of more spells, the ability to cast more spells, and faster
recovery of spells that have been cast.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">3.2 Strength</span></strong></p>
<p align="justify">This is, of course, the measure of a character's
physical strength. With higher strength a character can
carry more, cause more damage when striking, have a better
chance to strike an opponent, and move about more quickly
when carrying a load.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">3.3 Wisdom</span></strong></p>
<p align="justify">Wisdom is the primary attribute associated with Praying
to a god. With higher wisdom comes the knowledge of more
prayers, the ability to pray more often, and faster recovery
of prayer ability.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">3.4 Dexterity</span></strong></p>
<p align="justify">Dexterity is a measure of a character's agility. With
higher dexterity a character is harder to hit, can hit a
opponent more easily, and can move about more quickly when
carrying a load.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">3.5 Constitution</span></strong></p>
<p align="justify">Every character has a constitution rating. A character
with an exceptionally good constitution will gain more than
the normal amount of hit points associated with the
character's class when the character reaches a new
experience level. Exceptional constitution also provides
better protection versus poison-based attacks and diseases.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">3.6 Charisma</span></strong></p>
<p align="justify">Charisma is a measure of a characters looks and general
likeableness. It effects transactions when trying to
purchase things. </p>
<p align="justify"><strong><span style="font-variant: small-caps">3.7 Experience Levels</span></strong></p>
<p align="justify">
Characters gain experience for killing monsters,
stealing from monsters, and turning monsters. Each
character class has a set of thresholds associated with it.
When a character reaches a threshold, the character attains
the next experience level. This new level brings extra hit
points and a greater chance of success in performing the
abilities associated with the character's class. For
example, magicians receive new spells, and clerics receive
new prayers.
</p>
<p align="justify">
<strong><span style="font-variant: small-caps">3.8 Allocating Attributes</span></strong>
</p>
<p align="justify">
The player starts with 72 "attribute points" to create
a character and can distribute them in any manner among the
six attributes described above. When prompting the player
for each attribute, the game displays the minimum and
maximum allowable values for that attribute. The player can
type a backspace (control-H) to go back and change a value;
typing an escape (ESC) sets the remaining attributes to the
maximum value possible given the remaining attribute points.
</p>
<h3 align="justify">
4.0
THE SCREEN</h3>
<p align="justify">
During the normal course of play, the screen consists
of three separate sections: the top line of the terminal,
the bottom two lines of the terminal, and the remaining
middle lines. The top line reports actions which occur
during the game, the middle section depicts the dungeon, and
the bottom lines describe the player's current condition.
</p>
<p align="justify"><strong><span style="font-variant: small-caps">4.1 The Top Line</span></strong>
<p align="justify">
Whenever anything happens to the player, such as
finding a scroll or hitting or being hit by a monster, a
short report of the occurrence appears on the top line of
the screen. When such reports occur quickly, one right
after another, the game displays the notice followed by the
prompt '--More--.' After reading this notice, the player
can press a space to display the next message. At such a
point, the game ignores all commands until the player
presses a space.
</p>
<p align="justify">
<strong><span style="font-variant: small-caps">4.2 The Dungeon Section</span></strong><p align="justify">
The large middle section of the screen displays the
player's surroundings using the following symbols:
</p>
<p>
<table border="0" cellpadding="3" style="border-collapse: collapse" id="table3" cellspacing="3">
<tr>
<td align="center">|</td>
<td> </td>
<td>A wall of a room.</td>
</tr>
<tr>
<td align="center">-</td>
<td> </td>
<td>A wall of a room.</td>
</tr>
<tr>
<td align="center">*</td>
<td> </td>
<td>A pile of gold.</td>
</tr>
<tr>
<td align="center">%</td>
<td> </td>
<td>A way to another level.</td>
</tr>
<tr>
<td align="center">+</td>
<td> </td>
<td>A doorway.</td>
</tr>
<tr>
<td align="center">.</td>
<td> </td>
<td>The floor in a room</td>
</tr>
<tr>
<td align="center">@</td>
<td> </td>
<td>The player.</td>
</tr>
<tr>
<td align="center">_</td>
<td> </td>
<td>The player, when invisible.</td>
</tr>
<tr>
<td align="center">#</td>
<td> </td>
<td>The floor in a passageway</td>
</tr>
<tr>
<td align="center">!</td>
<td> </td>
<td>A flask containing a potion.</td>
</tr>
<tr>
<td align="center">?</td>
<td> </td>
<td>A sealed scroll.</td>
</tr>
<tr>
<td align="center">:</td>
<td> </td>
<td>Some food.</td>
</tr>
<tr>
<td align="center">)</td>
<td> </td>
<td>A weapon.</td>
</tr>
<tr>
<td align="center"> </td>
<td nowrap> </td>
<td nowrap>Solid rock (denoted by a space)</td>
</tr>
<tr>
<td align="center">]</td>
<td> </td>
<td>Some armor.</td>
</tr>
<tr>
<td align="center">;</td>
<td> </td>
<td>A miscellaneous magic item.</td>
</tr>
<tr>
<td align="center">,</td>
<td> </td>
<td>An artifact.</td>
</tr>
<tr>
<td align="center">=</td>
<td> </td>
<td>A ring.</td>
</tr>
<tr>
<td align="center">/</td>
<td> </td>
<td>A wand or a staff.</td>
</tr>
<tr>
<td align="center">^</td>
<td> </td>
<td>The entrance to a trading post.</td>
</tr>
<tr>
<td align="center">></td>
<td> </td>
<td>A trapdoor leading to the next level.</td>
</tr>
<tr>
<td align="center">{</td>
<td> </td>
<td>An arrow trap.</td>
</tr>
<tr>
<td align="center">$</td>
<td> </td>
<td>A sleeping gas trap.</td>
</tr>
<tr>
<td align="center">}</td>
<td> </td>
<td>A beartrap.</td>
</tr>
<tr>
<td align="center">~</td>
<td> </td>
<td>A trap that teleports you somewhere else.</td>
</tr>
<tr>
<td align="center">`</td>
<td> </td>
<td>A poison dart trap.</td>
</tr>
<tr>
<td align="center">"</td>
<td> </td>
<td>a shimmering magic pool.</td>
</tr>
<tr>
<td align="center">'</td>
<td> </td>
<td>An entrance to a maze.</td>
</tr>
<tr>
<td align="center">$</td>
<td> </td>
<td>Any magical item. (During magic detection)</td>
</tr>
<tr>
<td align="center">></td>
<td nowrap> </td>
<td nowrap>A blessed magical item. (Duriing magic detection)</td>
</tr>
<tr>
<td align="center"><</td>
<td> </td>
<td>A cursed magical item. (During magic detection)</td>
</tr>
<tr>
<td align="center">A letter</td>
<td> </td>
<td>A monster. Note that a given letter may signify<br>
multiple monsters, depending on the level of the<br>
dungeon. The player can always identify a current<br>
monster by using the identify command ('/').</td>
</tr>
</table>
</p>
<p align="justify"><strong><span style="font-variant: small-caps">4.3 The Status Section</span></strong></p>
<p align="justify">
The bottom two lines of the screen describe the
player's current status. The first line gives the player's
characteristics:
</p>
<ul>
<li>
<p align="justify">Intelligence (Int)</li>
<li>
<p align="justify">Strength (Str)</li>
<li>
<p align="justify">Wisdom (Wis)</li>
<li>
<p align="justify">Dexterity (Dxt)</li>
<li>
<p align="justify">Constitution (Const)</li>
<li>
<p align="justify">Charisma (Char)</li>
<li>
<p align="justify">Encumberance (Carry)</li>
</ul>
<p align=justify>
Intelligence, strength, wisdom, dexterity, charisma,
and constitution have a normal maximum of 25, but can be
higher when augmented by a ring. Encumberance is a
measurement of how much the player can carry versus how much
he is currently carrying. The more you carry relative to
your maximum causes you to use more food.
</p>
<p align=justify>
The second status line provides the following
information:
</p>
<ul>
<li>
<p align="justify">The current level (Lvl) in the dungeon. This number
increases as the player goes further down.
</li>
<li>
<p align="justify">The player's current number of hit points (Hp),
followed in parentheses by the player's current maximum
number of hit points. Hit points express the player's
health. As a player heals by resting, the player's
current hit points gradually increase until reaching
the current maximum. This maximum increases each time
a player attains a new experience level. If the
player's current hit points reach 0, the player dies.
</li>
<li>
<p align="justify">The player's armor class (Ac). This number describes
the amount of protection provided by the armor, cloaks,
and/or rings currently worn by the player. It is also
affected by high or low dexterity. Wearing no armor is
equivalent to an armor class of 10. The protection
level increases as the armor class decreases.
</li>
<li>
<p align="justify">The player's current experience level (Exp) followed by
the player's experience points. The player can gain
experience points by killing monsters, successfully
stealing from monsters, and turning monsters. When a
player gains enough experience points to surpass a
threshold that depends on the player's character type,
the player reaches a new experience level. A new
experience level brings extra hit points and possibly
added abilities, such as a new spell for a magician or
a new prayer for a cleric.
</li>
<li>
<p align="justify">A description of the player's character. This
description depends on the player's character type and
experience level.
</li>
</ul>
<h3 align="justify">5.0 COMMANDS</h3>
<p align="justify">
A player can invoke most Rogue commands by typing a
single character. Some commands, however, require a
direction, in which case the player types the command
character followed by a directional command. Many commands
can be prefaced by a number, indicating how many times the
command should be executed.
</p>
<p align=justify>
When the player invokes a command referring to an item
in the player's pack (such as reading a scroll), the game
prompts for the item. The player should then type the
letter associated with the item, as displayed by the
inventory command. Typing a '*' at this point produces a
list of the eligible items.
</p>
<p align=center><b><i>Rogue understands the following commands:</i></b></p>
<p>
<table border="0" cellpadding="3" style="border-collapse: collapse" id="table4" cellspacing="3">
<tr>
<td align="center" valign="top">?</td>
<td> </td>
<td>Preceding a command by a '?' produces a brief explanation of the
command. The command '?*' gives an explanation of all the commands.</td>
</tr>
<tr>
<td align="center" valign="top">/</td>
<td> </td>
<td>Preceding a symbol by a '/' identifies the symbol.</td>
</tr>
<tr>
<td align="center" valign="top">=</td>
<td> </td>
<td>Clarify. After typing an '=' sign, the player can use the movement
keys to position the cursor anywhere on the current level. As long as
the player can normally see the selected position, Rogue will identify
whatever is at that space. Examples include a sleeping giant rat, a blue
potion, and a food ration.</td>
</tr>
<tr>
<td align="center" valign="top">h</td>
<td> </td>
<td>Move one position to the left.</td>
</tr>
<tr>
<td align="center" valign="top">j</td>
<td> </td>
<td>Move one position down.</td>
</tr>
<tr>
<td align="center" valign="top">k</td>
<td> </td>
<td>Move one position up.</td>
</tr>
<tr>
<td align="center" valign="top">l</td>
<td> </td>
<td>Move one position to the right.</td>
</tr>
<tr>
<td align="center" valign="top">y</td>
<td height="21"> </td>
<td height="21">Move one position to the top left.</td>
</tr>
<tr>
<td align="center" valign="top">u</td>
<td> </td>
<td>Move one position to the top right.</td>
</tr>
<tr>
<td align="center" valign="top">b</td>
<td> </td>
<td>Move one position to the bottom left.</td>
</tr>
<tr>
<td align="center" valign="top">n</td>
<td> </td>
<td>Move one position to the bottom right</td>
</tr>
<tr>
<td align="center" valign="top">H</td>
<td> </td>
<td>Run to the left until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">J</td>
<td> </td>
<td>Run down until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">K</td>
<td> </td>
<td>Run up until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">L</td>
<td> </td>
<td>Run to the right until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">Y</td>
<td> </td>
<td>Run to the top left until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">U</td>
<td> </td>
<td>Run to the top right until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">B</td>
<td> </td>
<td>Run to the bottom left until reaching something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">N</td>
<td> </td>
<td>Run to the bottom right until reaching something interesting</td>
</tr>
<tr>
<td align="center" valign="top">t</td>
<td> </td>
<td>This command prompts for an object from the players pack. The player
then throws the object in the specified direction.</td>
</tr>
<tr>
<td align="center" valign="top">f</td>
<td> </td>
<td>When this command is preceded with a directional command, the player
moves in the specified direction until passing something interesting.</td>
</tr>
<tr>
<td align="center" valign="top">z</td>
<td> </td>
<td>This command prompts for a wand or staff from the player's pack and
zaps
it in the specified direction.</td>
</tr>
<tr>
<td align="center" valign="top">></td>
<td> </td>
<td>Go down to the next level.</td>
</tr>
<tr>
<td align="center" valign="top"><</td>
<td> </td>
<td>Go up to the next level.</td>
</tr>
<tr>
<td align="center" valign="top">s</td>
<td> </td>
<td>Search for a secret door or a trap in the circle surrounding the
player.</td>
</tr>
<tr>
<td align="center" valign="top">.</td>
<td> </td>
<td>This command (a dot) causes the player to rest a turn.</td>
</tr>
<tr>
<td align="center" valign="top">i</td>
<td> </td>
<td>Display an inventory of the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">I</td>
<td> </td>
<td>This command prompts for an item from the player's pack and displays
the inventory information for that item.</td>
</tr>
<tr>
<td align="center" valign="top">q</td>
<td> </td>
<td>Quaff a potion from the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">r</td>
<td> </td>
<td>Read a scroll from the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">e</td>
<td> </td>
<td>Eat some food from the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">w</td>
<td> </td>
<td>Wield a weapon from the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">W</td>
<td> </td>
<td>Wear some armor, ring, or a miscellaneous magic item from the
player's
pack. The player can wear a maximum of 8 rings.</td>
</tr>
<tr>
<td align="center" valign="top">T</td>
<td> </td>
<td>Take off whatever the player is wearing.</td>
</tr>
<tr>
<td align="center" valign="top">^U</td>
<td> </td>
<td>Use a magic item in the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">d</td>
<td> </td>
<td>Drop an item from the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">P</td>
<td> </td>
<td>Pick up the items currently under the player.</td>
</tr>
<tr>
<td align="center" valign="top">^N</td>
<td> </td>
<td>When the player types this command, Rogue prompts for a monster or
an item from the player's pack and a one-line name. For monsters, the
player can use the movement keys to position the cursor over the desired
monster, and Rogue will use the given name to refer to that<br>
monster. For items, Rogue gives all similar items (such as all the blue
potions) the specified name.</td>
</tr>
<tr>
<td align="center" valign="top">m</td>
<td> </td>
<td>When the player types this command, Rogue prompts for an item from
the player's pack and a one-line name. Rogue then marks the specified
item with the given name..</td>
</tr>
<tr>
<td align="center" valign="top">o</td>
<td> </td>
<td>Typing this command causes Rogue to display all the settable
options. The player can then merely examine the options or change any or
all of them.</td>
</tr>
<tr>
<td align="center" valign="top">C</td>
<td> </td>
<td>This command, restricted to magicians and rangers produces a listing
of the current supply of spells. The player can select one of the
displayed spells and, if the player's energy level is sufficiently high,
Cast it. The more complicated the spell, the more energy it takes.</td>
</tr>
<tr>
<td align="center" valign="top">c</td>
<td> </td>
<td>This command, restricted to druids and rangers produces a listing of
the current supply of chants. The player can select one of the displayed
chants and, if the player's energy level is sufficiently high, chant it.
The more complicated the spell, the more energy it takes.</td>
</tr>
<tr>
<td align="center" valign="top">p</td>
<td> </td>
<td>This command, restricted to clerics and paladins, produces a listing
of the character's known prayers. The player can then offer one of these
prayers to the character's deity. Deities are not known for favoring
characters which continually pray to them, and they are most likely to
answer the least "ambitious" prayers.</td>
</tr>
<tr>
<td align="center" valign="top">a</td>
<td> </td>
<td>This command is restricted to clerics and paladins must be followed
by a directional command. If there is an "undead" monster standing next
to the player in the specified direction, there is a chance the player
will affect the monster by causing it to flee or possibly even
destroying it.</td>
</tr>
<tr>
<td align="center" valign="top">*</td>
<td> </td>
<td>Count the gold in the player's pack.</td>
</tr>
<tr>
<td align="center" valign="top">^</td>
<td> </td>
<td>This command sets a trap and is limited to thieves and assassins. If
the character is successful, Rogue prompts the player for a type of trap
and sets it where the player is standing.</td>
</tr>
<tr>
<td align="center" valign="top">G</td>
<td> </td>
<td>This command is restricted to thieves and assassins. It causes Rogue
to display all the gold on the current level.</td>
</tr>
<tr>
<td align="center" valign="top">D</td>
<td> </td>
<td>Dip something into a magic pool.</td>
</tr>
<tr>
<td align="center" valign="top">^T</td>
<td height="22"> </td>
<td height="22">This command is restricted to thieves and assassins. It
must be followed by a directional command. If there is a monster
standing next to the player in the specified direction, the player tries
to steal an item from the monster's pack. If the player is successful,
the monster does not notice anything, but if the player is unsuccessful,
there is a chance the monster will wake up.</td>
</tr>
<tr>
<td align="center" valign="top">^L</td>
<td> </td>
<td>Redraw the screen.</td>
</tr>
<tr>
<td align="center" valign="top">^R</td>
<td> </td>
<td>Repeat the last message that was displayed on the top line of the
screen.</td>
</tr>
<tr>
<td align="center" valign="top">Escape (^[)</td>
<td> </td>
<td>Typing an escape will usually cause Rogue to cancel the current
command.</td>
</tr>
<tr>
<td align="center" valign="top">v</td>
<td> </td>
<td>Print the current Rogue version number.</td>
</tr>
<tr>
<td align="center" valign="top">!</td>
<td> </td>
<td>Escape to the shell level.</td>
</tr>
<tr>
<td align="center" valign="top">S</td>
<td> </td>
<td>Quit and save the game for resumption at a later time.</td>
</tr>
<tr>
<td align="center" valign="top">Q</td>
<td> </td>
<td>Quit without saving the game.</td>
</tr>
</table>
</p>
<h3 align="justify">6. IMPLICIT COMMANDS</h3>
<p align="justify">
There is no "attack" command. If a player wishes to
attack a monster, the player simply tries to move onto the
spot where the monster is standing. The game then assumes
that the player wishes to attack the monster with whatever
weapon the player is wielding.
</p>
<p align=justify>
When the player moves onto an item, the game
automatically places the object into the player's pack. If
there is no room left in the pack, the game announces that
fact and leaves the item on the floor.
</p>
<h3 align="justify">7. TIME</h3>
<p align="justify">
All actions except for purely bookkeeping commands,
such as taking an inventory, take time. The amount of time
varies with the command. Swinging a weapon, for example,
takes more time than simply moving; so a monster could move
several spaces in the time it takes the player to make one
attack. The time it takes to swing a weapon also varies
based on the bulk of the weapon, and the time it takes to
simply move a space varies with the type of armor worn.
Movement is always faster when flying.
</p>
<p align=justify>
Since actions take time, some of them can be disrupted.
If the player is casting a spell, for example, and gets hit
before finishing it, the spell is lost. Similarly, the
player might choke if hit while trying to eat. Of course,
the same rule applies when the player hits a monster.
</p>
<p align=justify>
Magical hasting (or slowing) will decrease (or
increase) the time it takes to perform an action.
</p>
<h3 align="justify">8.0 LIGHT</h3>
<p align="justify">
Some rooms in the dungeon possess a natural light
source. In other rooms and in corridors the player can see
only those things within a one space radius from the player.
These dark rooms can be lit with magical light or by a fire
beetle.
</p>
<h3 align="justify">9. WEAPONS AND ARMOR</h3>
<p align="justify">
The player can wield exactly one weapon at a time.
When the player attacks a monster, the amount of damage
depends on the particular weapon the player is wielding. To
fire a projectile weapon, such as a crossbow or a short bow,