This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathuw1_stringsclean.txt
7090 lines (7090 loc) · 368 KB
/
uw1_stringsclean.txt
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
001=000=Hey, its all the game strings
001=001=Yow
001=002=The key does not fit.
001=003=There is no lock on that.
001=004=The key locks the lock.
001=005=The key unlocks the lock.
001=006=That is already open.
001=007=Use key on...
001=008=What lock would you like to try to pick?
001=009=As you reach for the tree, it withers away, revealing a silver seed.
001=010=The seed does not seem to find space for roots, and remains inert.
001=011=The seed vanishes.
001=012=You plant the seed, and a small silver tree quickly grows.
001=013=Welcome to the Underworld.
001=014=There are hostile creatures near!
001=015=You make camp.
001=016=You go to sleep.
001=017=You are starving.
001=018=You feel rested.
001=019=Your sleep is uneasy.
001=020=You can't go to sleep here!
001=021=Your sleep is interrupted!
001=022=It looks to be that of
001=023=They look to be those of
001=024=You are not ready to advance.
001=025=That is not a mantra.
001=026=Knowledge and Understanding fill you.
001=027=You cannot advance any further in that skill.
001=028=You have advanced greatly in
001=029=You have advanced in
001=030=None of your skills improved.
001=032=The Key of Truth is needed. Use it well.
001=033=You hear a chime in the distance.
001=034=You cannot advance in
001=035=The Cup of Wonder is
001=036=to the North
001=037=to the Northeast
001=038=to the East
001=039=to the Southeast
001=040=to the South
001=041=to the Southwest
001=042=to the West
001=043=to the Northwest
001=044=far far below you
001=045=far far below you
001=046=far below you
001=047=far below you
001=048=below you
001=049=below you
001=050=underneath you
001=052=above you
001=053=above you
001=054=above you
001=055=far above you
001=056=far above you
001=057=far far above you
001=058=far far above you
001=059=You detect a creature
001=060=You detect a few creatures
001=061=You detect the activity of many creatures
001=062=You detect no monster activity.
001=063= is currently active.
001=064=You are currently
001=065=You are on the
001=066= level of the Abyss.
001=067=It is the
001=068= day of your imprisonment.
001=069=It has been an uncountable number of days since you entered the Abyss.
001=070=You guess that it is currently
001=071=night
001=072=night
001=073=dawn
001=074=early morning
001=075=morning
001=076=late morning
001=077=mid-day
001=078=afternoon
001=079=late afternoon
001=080=early evening
001=081=evening
001=082=night
001=083=.
001=084=barely
001=085=mildly
001=086=badly
001=087=seriously
001=088=egregiously
001=089=Your current vitality is
001=090=Your current mana points are
001=091=You are
001=092= poisoned.
001=093=That is too far away to take.
001=094=You cannot reach that.
001=095=That is too heavy for you to pick up.
001=096=You cannot pick that up.
001=097=You detect no traps.
001=098=You found a trap! Do you wish to try to disarm it?
001=099=You catch a lovely fish.
001=100=No luck this time.
001=101=You cannot fish there. Perhaps somewhere else.
001=102=You feel a nibble, but the fish gets away.
001=103= and
001=104=starving
001=105=famished
001=106=very hungry
001=107=hungry
001=108=peckish
001=109=fed
001=110=well fed
001=111=full
001=112=satiated
001=113=fatigued
001=114=very tired
001=115=drowsy
001=116=awake
001=117=rested
001=118=wide awake
001=119=You can only use those individually. Take one from this group if you wish to use it.
001=120=Your lockpicking attempt failed.
001=121=You succeed in picking the lock.
001=122=That is not locked.
001=123=Lights may only be used if equipped.
001=124=That light is already used up.
001=125=With a loud <SNAP!>, the wand cracks.
001=126=You are too full to eat that now.
001=127=You are unable to open the wine bottle.
001=128=You can only spike closed doors.
001=129=The door is now spiked closed.
001=130=Please select door to spike...
001=131=The door is spiked.
001=132=It seems to have no effect.
001=133=The orb is destroyed!
001=134=You thoughtfully give the bones a final resting place.
001=135=The rock breaks into smaller pieces.
001=136=An object appears in the air and falls into your hand...
001=137= is nearly done
001=138= is unstable
001=139= is stable
001=140=You destroyed the
001=141=You damaged the
001=142=You cannot repair that.
001=143=Your attempt has no effect on the
001=144=You have partially repaired the
001=145=You have fully repaired the
001=146=The noise you made has attracted attention!
001=147=You have attained experience level
001=148=The bowl does not contain the correct ingredients.
001=149=You mix the ingredients into a stew.
001=150=You need a bowl to mix the ingredients.
001=151=Enscribed upon the scroll is your map.
001=152=You cannot use that.
001=153=Why is this being printed?
001=154=You see nothing.
001=155=Nothing to get.
001=156=You cannot talk to that.
001=157=Using the pole you trigger the switch.
001=158=The pole cannot be used on that.
001=159=Impossible, you are between worlds.
001=160=You cannot select options partway through an action.
001=161=No save game there.
001=162=Restore Game Complete.
001=163=\4Restore Game Failed.\0
001=164=\4Save Game Failed.\0
001=165=\6Save Game Succeeded.\0
001=166=Restoring Game
001=167=Saving Game
001=168=\6 Please enter a save file description:
001=169=Error: Bad save file
001=170=...
001=171=You see a bridge.
001=172= tasted putrid.
001=173= tasted a little rancid.
001=174= tasted kind of bland.
001=175= tasted pretty good.
001=176= tasted great.
001=177=You cannot use oil on that.
001=178=You think it is a bad idea to add oil to the lit lantern.
001=179=Adding oil, you refuel the lantern.
001=180=The lantern is already full.
001=181=Dousing a cloth with oil and applying it to the wood, you make a torch.
001=182=You think it is a bad idea to add oil to the lit torch.
001=183=You refresh the torch.
001=184=The torch is unused.
001=185=You are unable to use that from here.
001=186=You cannot barter a container. Instead, remove the contents you want to trade.
001=187=A level
001=188=Banished the Slasher of Veils
001=189=after
001=190= days in the Abyss
001=191=There is a pained whining sound.
001=192=There is an empty clicking sound.
001=193=A voice utters the words "Reset Activated."
001=194=You press in the button.
001=195=You press in the button.
001=196=You press in the button.
001=197=You flip the switch.
001=198=You flip the switch.
001=199=You pull the level.
001=200=You pull the chain.
001=201=You pull the chain.
001=202=The button returns to its original state.
001=203=The button returns to its original state.
001=204=The button returns to its original state.
001=205=You flip the switch.
001=206=You flip the switch.
001=207=You push the lever.
001=208=You return the chain to its original position.
001=209=You return the chain to its original position.
001=210=You are not experienced enough to cast spells of that circle.
001=211=You do not have enough mana to cast the spell.
001=212=The incantation failed.
001=213=Casting was not successful.
001=214=The spell backfires.
001=215=You attempt to use the wand.
001=216=You think it will be
001=217= to repair the
001=218=Make an attempt?
001=219=trivial
001=220=simple
001=221=possible
001=222=hard
001=223=very difficult
001=224=The leeches remove the poison as well as some of your skin and blood.
001=225= is angered by your action.
001=226= is annoyed by your action.
001=227= notes your action.
001=228=Your vision distorts and you feel light headed.
001=229=You manage to finish eating the leeches. Barely.
001=230=You eat the candle, but doubt that it was good for you.
001=231=The toadstool tastes odd, and you begin to feel ill.
001=232=The mushroom causes your head to spin, and your vision to blur.
001=233=The plant is plain tasting but nourishing.
001=234=The rotworm corpse tastes quite bland but has an interesting texture. A tasteful flavoring would help it greatly.
001=235=The wormy stew has a subtle flavor which belies its ingredients.
001=236=Although you have to eat around the thorny flowers, the plant is quite good.
001=237=The water refreshes you.
001=238=You drink the port.
001=239=You drink the dark ale.
001=240=You quaff the potion in one gulp.
001=241=As the alcohol hits you, you stumble and collapse into sleep.
001=242=The drink makes you feel a little better for now.
001=243=You wake feeling somewhat unstable but better.
001=244=You found a trap! Do you wish to try to disarm it?
001=245=Your Rune of Warding has been set off
001=246=Your hands are full.
001=247=You can only put runes in the rune bag.
001=248=That item does not fit.
001=249=The waters of the fountain renew your strength.
001=250=You play the instrument. (Use 0-9 to play, or ESC to return to game)
001=251=You put the instrument down.
001=252=That is too heavy to take.
001=253=There is no space to drop that.
001=254=You need more space to fire that weapon.
001=255=There is not enough room to release that spell.
001=256=enters the Abyss . . .
001=257=You reenter the Abyss . . .
001=258=There is no place to put that.
001=259=The bones do not seem at rest in the grave, and you take them back.
001=260=You see
001=261=the Book of Honesty.
001=262=the Taper of Sacrifice.
001=263=the Taper of Sacrifice.
001=264=the Wine of Compassion.
001=265=the Standard of Honor.
001=266=the Shield of Valor.
001=267=the Cup of Wonder.
001=268=the Sword of Justice.
001=269=the Ring of Humility.
001=270=The spell unlocks the lock.
001=271=The spell has no discernable effect.
001=272=There is no reaction from the princess.
001=273=The moonstone is not available.
001=274=The cauldron is empty.
001=275=Ultima Underworld: The Stygian Abyss v
001=276=The Rune of Warding is placed.
001=277=There is no room to create that.
001=278=A rending sound fills the air.
001=279=The Slasher of Veils is dragged from this world.
001=280=You are sucked through the moongate . . . . .
001=281=You cannot save or restore games in the demo version.
001=370= a denizen of the area
001=371= a rotworm
001=372= a slug
001=373= a bat
001=374= a rat
001=375= a spider
001=376= a green goblin
001=377= a skeleton
001=378= an imp
001=379= a gray goblin
001=380= a mountainman
001=381= a lizardman
001=382= a lurker
001=383= a knight
001=384= a headless
001=385= a troll
001=386= a ghost
001=387= a ghoul
001=388= a gazer
001=389= a mage
001=390= a golem
001=391= a shadow beast
001=392= a reaper
001=393= a fire elemental
001=394= a wisp
001=395= Tyball
001=396= the Slasher of Veils
001=397= an outcast
001=398= a creature
001=411=first
001=412=second
001=413=third
001=414=fourth
001=415=fifth
001=416=sixth
001=417=seventh
001=418=eighth
001=419=ninth
001=420=tenth
001=421=eleventh
001=422=twelveth
001=423=thirteenth
001=424=fourteenth
001=425=fifteenth
001=426=sixteenth
001=427=seventeenth
001=428=eighteenth
001=429=nineteenth
001=430=twentieth
001=431=twenty-first
001=432=twenty-second
001=433=twenty-third
001=434=twenty-fourth
001=435=twenty-fifth
001=436=twenty-sixth
001=437=twenty-seventh
001=438=twenty-eighth
001=439=twenty-ninth
001=440=thirtieth
001=441=thirty-first
001=442=thirty-second
001=443=thirty-third
001=444=thirty-fourth
001=445=thirty-fifth
001=446=thirty-sixth
001=447=thirty-seventh
001=448=thirty-eighth
001=449=thirty-ninth
001=450=fortieth
001=451=forty-first
001=452=forty-second
001=453=forty-third
001=454=forty-fourth
001=455=forty-fifth
001=456=forty-sixth
001=457=forty-seventh
001=458=forty-eighth
001=459=forty-ninth
001=460=fiftieth
001=461=fifty-first
001=462=fifty-second
001=463=fifty-third
001=464=fifty-fourth
001=465=fifty-fifth
001=466=fifty-sixth
001=467=fifty-seventh
001=468=fifty-eighth
001=469=fifty-ninth
001=470=sixtieth
001=471=sixty-first
001=472=sixty-second
001=473=sixty-third
001=474=sixty-fourth
001=475=sixty-fifth
001=476=sixty-sixth
001=477=sixty-seventh
001=478=sixty-eighth
001=479=sixty-ninth
001=480=seventieth
001=481=seventy-first
001=482=seventy-second
001=483=seventy-third
001=484=seventy-fourth
001=485=seventy-fifth
001=486=seventy-sixth
001=487=seventy-seventh
001=488=seventy-eighth
001=489=seventy-ninth
001=490=eightieth
001=491=eighty-first
001=492=eighty-second
001=493=eighty-third
001=494=eighty-fourth
001=495=eighty-fifth
001=496=eighty-sixth
001=497=eighty-seventh
001=498=eighty-eighth
001=499=eighty-ninth
001=500=ninetieth
001=501=ninety-first
001=502=ninety-second
001=503=ninety-third
001=504=ninety-fourth
001=505=ninety-fifth
001=506=ninety-sixth
001=507=ninety-seventh
001=508=ninety-eighth
001=509=ninety-ninth
001=510=hundredth
001=511=uncountable
002=001=Choose character sex:
002=002=Select handedness:
002=003=Pick a class:
002=004=Pick a skill:
002=006=Choose difficulty:
002=007=Name:
002=008=Keep this character?
002=009=Male
002=010=Female
002=011=Left
002=012=Right
002=013=Standard
002=014=Easy
002=015=Yes
002=016=No
002=017=Str:
002=018=Dex:
002=019=Int:
002=020=Vit:
002=021=Mana:
002=022=Exp:
002=023=Fighter
002=024=Mage
002=025=Bard
002=026=Tinker
002=027=Druid
002=028=Paladin
002=029=Ranger
002=030=Shepherd
002=031=Attack
002=032=Defense
002=033=Unarmed
002=034=Sword
002=035=Axe
002=036=Mace
002=037=Missile
002=038=Mana
002=039=Lore
002=040=Casting
002=041=Traps
002=042=Search
002=043=Track
002=044=Sneak
002=045=Repair
002=046=Charm
002=047=Picklock
002=048=Acrobat
002=049=Appraise
002=050=Swimming
002=051=RA
002=052=ANRA
002=053=ORA
002=054=AMO
002=055=GAR
002=056=KOH
002=057=FAHM
002=058=IMU
002=059=LAHN
002=060=SOL
002=061=ROMM
002=062=LU
002=063=SAHF
002=064=MUL
002=065=LON
002=066=UN
002=067=AAM
002=068=FAL
002=069=HUNN
002=070=ONO
002=071=INSAHN
002=072=FANLO
002=073=NO
002=074=SUMM RA
002=075=MU AHM
002=076=OM CAH
003=000=The pages are blank.
003=002=My dearest Alfred:Go into the Abyss knowing that I will not forget thee. As bitter as the Baron's justice dost seem, tis better than a hangman's noose. No matter the passing of years, I will await thy return. Yours forever, Sandra
003=003=The dim witted Goblins have given me the tool I need; tonight I shall make good my escape from this filthy cell - Bragit
003=004=Uus Por for large jumps
003=032=These blueprints are indecipherable.
003=033=Speak the mantra RA to see thy blows land with greater effectiveness.
003=034=For better eyesight, use the mantra LU.
003=035=It is said that chanting UN will allow one to make better deals.
003=036=To better gauge the quality of a deal, chant HUNN.
003=037=Remove Bet from a Resist Blows spell for better protection.
003=064=Look for Thieves hideout behind storage room
003=065=TRIED THIS LEVER! MANY R...
003=066=Ghastly ones broken haft have. Search for Blade in southeast. Behind wall, secrets are.
003=067=Ossikka, Upon your shoulders does holding together the Lizard folk alliance fall. Please do not fail me. Sir Cabirus
003=068=Speak SAHF to gain tracking.
003=069=Wanderer Thanking you much, I can lizardman rune-spell talk. For walk water, Ylem Por do.
003=070=Speaking FAL increases one's nimbleness and tumbling.
003=071=To swim better, chant the ONO mantra.
003=097=A book written to help parents frighten their children entitled "Mondain Strikes Back"
003=099=A short treatise on fishing technique, including casting technique and choice of lures
003=100=Diary of a Seer who was embarking on a Troll watching journey
003=101=The writ of Lorne is thus. In our days of beginning we must stick together, and not allow petty grievances to stand in the way of respect.
003=102=The maze conceals many chambers. One is said to lead a chamber once used by the knights.
003=103=Lorne went to the homeland of the Trolls in the hope of building a shrine.
003=104=The maze is locked with a key that is now thought to be lost.
003=105=I, Baron Almric, hereby condemn thee to the Abyss. At morn tommorrow thou wilt be brought to the entrance of the cave and released. If ever thou dost return, thou wilt be considered innocent. Until then, thou art guilty in the eyes of the land.
003=106=Lakshi - I am writing to discuss with you the possibility of your performing a small service for me, which in the end would be beneficial to ourselves and the Abyss as a whole. If you could have several of your subjects do some small favors for me, I would be indebted to you for quite some time. P.S. Just tell my messenger your response - he can be trusted.
003=107=Gratlashuns, Sethar, you done might strng by pertecting us. Thnks
003=108=Music and lyrics to a popular Troll fight song.
003=109=A stirring eulogy for Sir Ingvar
003=110=Certificate of honor, presented to Trisch Wender, upon winning the Serpent's Hold Four Day CrackShot competition
003=111=Finally, I can cast Curse! Now, to find a way out of this pit...
003=112=The Bullfrog puzzle has a simple solution, but there is more than meets the eye in that place.
003=113=The heights of the north have a hidden counterpart.
003=114=To pass into the unseen, jump through the seen.
003=115=One should be more careful to dot one's I's than to cross one's T's.
003=128=Thief's Guide volume 1Picking Locks--What Bellowing AAM Won't Tell You
003=129=Thief's Guide volume 2Stealth--What to do After MUL
003=130=Thief's Guide volume 3Scaling Walls--Art or Science?
003=131=Thief's Guide volume 4Traps--Beyond ROMM to Nuts and Bolts
003=132=An Corp Mani deals great blows to undead.
003=133=Chanting LAHN helps one to identify one's possessions.
003=160=On the Properties of Runestones
003=161=The Origin of Moongates: Do Other Worlds Exist?
003=162=Dangers of Mandrake Root: The Untold Story
003=163=A Compendium of Practical Jokes for the Aspiring Mage
003=164=A History of Britannia
003=165=Human-Gargish Dictionary
003=166=Unforeseen Combinations: The Continual Search for New Reagents
003=167=Not Just Pointy Caps with Stars: What Every Wizard Should Know About Fashion
003=168=A Study of the Use of Heat in Preparing Reagents
003=169=Volcanos: Gates to Other Worlds?
003=170=How to summon? Kal... Kal what? No Xen runestone... Mani perhaps? Must experiment in controlled environment...
003=171=A volume in a foreign tongue, entitled "Folanae Fanlo"
003=172=The Book of Honesty, by Ravenhurst of Moonglow
003=173=A tome whose pages have been torn out entitled "The Book of Duplicity"
003=174=Many mages have found that the IMU mantra has increased their magical stamina.
003=175=The SOL Mantra: A Useful Shortcut to Magical Power
003=192=Decided to explore the mines. There must be some way to bypass the maze. If only there were a way across the pit of lava. But my maps indicate there must be a secret door in this area. I enter now...
003=193=I'm trapped now. I dare not return from whence I came, and I dare not brave the caverns. So many hateful dead things. If only I'd known this key opened the door on the far side of the lava pit, I wouldn't be in this fix. I think I'll just rest and wait now. Perhaps my companions may find me...
003=194=Indecipherable runes that hurt your head when you look at them for too long
003=195=Remember to meet with naweohkx'o in the phase room on the 5th cycle.
003=196=In Lor, Bet In Sanct, Ort Jux, In Mani Ylem, Sanct Hur, Uus Por, Syn Flas? Tor Mes?
003=197=Garamon, forgive me! I'll revive thee when it's through.
003=198=Demonic Summoning and Control: Theory and Practice
003=199=On the Process of Resurrection
003=200=Dungeon Design and Constuction by Dugali Skowe
003=201=Leblanc: Horatio has explored the lava pits. He is now in the northwest mapping that area. He will send you both when he returns.
003=202=Mysteries of the Abyss
003=257=This recipe for worm stew requires port, a green mushroom, a dead rotworm, and a bowl to mix them in.
004=000=a_hand axe
004=001=a_battle axe
004=002=an_axe
004=003=a_dagger
004=004=a_shortsword
004=005=a_longsword
004=006=a_broadsword
004=007=a_cudgel
004=008=a_light mace
004=009=a_mace
004=010=a_shiny sword
004=011=a_jeweled axe
004=012=a_black sword
004=013=a_jeweled sword
004=014=a_jeweled mace
004=015=a_fist
004=016=a_sling stone
004=017=a_crossbow bolt
004=018=an_arrow
004=019=a_stone
004=020=a_fireball
004=021=a_lightning bolt
004=022=acid
004=023=a_magic missile
004=024=a_sling
004=025=a_bow
004=026=a_crossbow
004=031=a_jeweled bow
004=032=a_leather vest
004=033=a_mail shirt
004=034=a_breastplate
004=035=leather leggings&pairs of leather leggings
004=036=mail leggings&pairs of mail leggings
004=037=plate leggings&pairs of plate leggings
004=038=leather gloves&pairs of leather gloves
004=039=chain gauntlets&pairs of chain gauntlets
004=040=plate gauntlets&pairs of plate gauntlets
004=041=leather boots&pairs of leather boots
004=042=chain boots&pairs of chain boots
004=043=plate boots&pairs of plate boots
004=044=a_leather cap
004=045=a_chain cowl
004=046=a_helmet
004=047=a_pair of dragon skin boots&pairs of dragon skin boots
004=048=a_crown
004=049=a_crown
004=050=a_crown
004=054=an_iron ring
004=055=a_shiny shield
004=056=a_gold ring
004=057=a_silver ring
004=058=a_red ring
004=059=a_tower shield
004=060=a_wooden shield
004=061=a_small shield
004=062=a_buckler
004=063=a_jeweled shield
004=064=a_rotworm
004=065=a_flesh slug
004=066=a_cave bat
004=067=a_giant rat
004=068=a_giant spider
004=069=a_acid slug
004=070=a_goblin
004=071=a_goblin
004=072=a_giant rat
004=073=a_vampire bat
004=074=a_skeleton
004=075=an_imp
004=076=a_goblin
004=077=a_goblin
004=078=a_goblin
004=080=a_goblin
004=081=a_mongbat
004=082=a_bloodworm
004=083=a_wolf spider
004=084=a_mountainman&mountainmen
004=085=a_green lizardman&green lizardmen
004=086=a_mountainman&mountainmen
004=087=a_lurker
004=088=a_red lizardman&red lizardmen
004=089=a_gray lizardman&red lizardmen
004=090=an_outcast
004=091=a_headless&headlesses
004=092=a_dread spider
004=093=a_fighter
004=094=a_fighter
004=095=a_fighter
004=096=a_troll
004=097=a_ghost
004=098=a_fighter
004=099=a_ghoul
004=100=a_ghost
004=101=a_ghost
004=102=a_gazer
004=103=a_mage
004=104=a_fighter
004=105=a_dark ghoul
004=106=a_mage
004=107=a_mage
004=108=a_mage
004=109=a_mage
004=110=a_ghoul
004=111=a_feral troll
004=112=a_great troll
004=113=a_dire ghost
004=114=an_earth golem
004=115=a_mage
004=116=a_deep lurker
004=117=a_shadow beast
004=118=a_reaper
004=119=a_stone golem
004=120=a_fire elemental
004=121=a_metal golem
004=122=a_wisp
004=127=an_adventurer
004=128=a_sack
004=129=an_open sack
004=130=a_pack
004=131=an_open pack
004=132=a_box&boxes
004=133=an_open box&open boxes
004=134=a_pouch&pouches
004=135=an_open pouch&pouches
004=136=a_map case
004=137=an_open map case
004=138=a_gold coffer
004=139=an_open gold coffer
004=140=an_urn
004=141=a_quiver
004=142=a_bowl
004=143=a_rune bag
004=144=a_lantern
004=145=a_torch&torches
004=146=a_candle
004=147=a_taper
004=148=a_lit lantern
004=149=a_lit torch
004=150=a_lit candle
004=151=a_lit taper
004=152=a_wand
004=153=a_wand
004=154=a_wand
004=155=a_wand
004=156=a_broken wand
004=157=a_broken wand
004=158=a_broken wand
004=159=a_broken wand
004=160=a_coin
004=161=a_gold coin
004=162=a_ruby&rubies
004=163=a_red gem
004=164=a_small blue gem
004=165=a_large blue gem
004=166=a_sapphire
004=167=an_emerald
004=168=an_amulet
004=169=a_goblet
004=170=a_sceptre
004=171=a_gold chain
004=172=a_gold plate
004=173=an_ankh pendant
004=174=a_shiny cup
004=175=a_large gold nugget
004=176=a_piece of meat&pieces of meat
004=177=a_loaf of bread&loaves of bread
004=178=a_piece of cheese&pieces of cheese
004=179=an_apple
004=180=an_ear of corn&ears of corn
004=181=a_loaf of bread&loaves of bread
004=182=a_fish&fish
004=183=some_popcorn&bunches of popcorn
004=184=a_mushroom
004=185=a_toadstool
004=186=a_bottle of ale&bottles of ale
004=187=a_red potion
004=188=a_green potion
004=189=a_bottle of water&bottles of water
004=190=a_flask of port&flasks of port
004=191=a_bottle of wine&bottles of wine
004=192=a_plant
004=193=some_grass&bunches of grass
004=194=a_skull
004=195=a_skull
004=196=a_bone
004=197=a_bone
004=198=a_pile of bones&piles of bones
004=199=some_vines&bunches of vines
004=200=a_broken axe
004=201=a_broken sword
004=202=a_broken mace
004=203=a_broken shield
004=204=a_piece of wood&pieces of wood
004=205=a_piece of wood&pieces of wood
004=206=a_plant
004=207=a_plant
004=208=a_pile of debris&piles of debris
004=209=a_pile of debris&piles of debris
004=210=a_pile of debris&piles of debris
004=211=a_stalactite
004=212=a_plant
004=213=a_pile of debris&piles of debris
004=214=a_pile of debris&piles of debris
004=215=an_anvil
004=216=a_pole
004=217=a_dead rotworm
004=218=some_rubble&piles of rubble
004=219=a_pile of wood chips&piles of wood chips
004=220=a_pile of bones&piles of bones
004=221=a_blood stain
004=222=a_blood stain
004=223=a_blood stain
004=224=a_runestone
004=225=the_Key of Truth
004=226=the_Key of Love
004=227=the_Key of Courage
004=228=a_two part key
004=229=a_two part key
004=230=a_two part key
004=231=the_Key of Infinity
004=232=an_An stone
004=233=a_Bet stone
004=234=a_Corp stone
004=235=a_Des stone
004=236=an_Ex stone
004=237=a_Flam stone
004=238=a_Grav stone
004=239=a_Hur stone
004=240=an_In stone
004=241=a_Jux stone
004=242=a_Kal stone
004=243=a_Lor stone
004=244=a_Mani stone
004=245=a_Nox stone
004=246=an_Ort stone
004=247=a_Por stone
004=248=a_Quas stone
004=249=a_Rel stone
004=250=a_Sanct stone
004=251=a_Tym stone
004=252=an_Uus stone
004=253=a_Vas stone
004=254=a_Wis stone
004=255=a_Ylem stone
004=256=a_key
004=257=a_lockpick
004=258=a_key
004=259=a_key
004=260=a_key
004=261=a_key
004=262=a_key
004=263=a_key
004=264=a_key
004=265=a_key
004=266=a_key
004=267=a_key
004=268=a_key
004=269=a_key
004=270=a_key
004=271=a_lock
004=272=a_picture of Tom
004=273=a_crystal splinter
004=274=an_orb rock
004=275=the_Gem Cutter of Coulnes
004=276=a_book
004=277=a_block of burning incense&blocks of burning incense
004=278=a_block of incense&blocks of incense
004=279=an_orb
004=280=a_broken blade
004=281=a_broken hilt
004=282=a_figurine
004=283=some_rotworm stew&servings of rotworm stew
004=284=some_strong thread&pieces of strong thread
004=285=dragon scales&bunches of dragon scales
004=286=a_resilient sphere&some_resilient spheres
004=287=a_standard
004=288=a_spell
004=289=a_bedroll
004=290=a_silver seed
004=291=a_mandolin
004=292=a_flute
004=293=some_leeches&bunches of leeches
004=294=a_moonstone
004=295=a_spike
004=296=a_rock hammer
004=297=a_glowing rock
004=298=a_campfire
004=299=a_fishing pole
004=300=a_medallion
004=301=an_oil flask
004=302=a_fountain
004=303=a_cauldron
004=304=a_book
004=305=a_book
004=306=a_book
004=307=a_book
004=308=a_book
004=309=a_book
004=310=a_book
004=311=a_book
004=312=a_scroll
004=313=a_scroll
004=314=a_scroll
004=315=a_map
004=316=a_scroll
004=317=a_scroll
004=318=a_scroll
004=319=a_scroll
004=320=a_door
004=321=a_door
004=322=a_door
004=323=a_door
004=324=a_door
004=325=a_door
004=326=a_portcullis&portcullises
004=327=a_secret door
004=328=an_open door
004=329=an_open door
004=330=an_open door
004=331=an_open door
004=332=an_open door
004=333=an_open door
004=334=an_open portcullis
004=335=a_secret door
004=336=a_bench&benches
004=337=an_arrow
004=338=a_crossbow bolt
004=339=a_large boulder
004=340=a_large boulder
004=341=a_boulder
004=342=a_small boulder
004=343=a_shrine
004=344=a_table
004=345=a_beam
004=346=a_moongate
004=347=a_barrel
004=348=a_chair
004=349=a_chest
004=350=a_nightstand
004=351=a_lotus turbo esprit
004=352=a_pillar
004=353=a_lever
004=354=a_switch&switches
004=356=a_bridge
004=357=a_gravestone
004=358=some_writing
004=365=force field
004=366=special tmap obj
004=367=special tmap obj
004=368=a_button
004=369=a_button
004=370=a_button
004=371=a_switch
004=372=a_switch
004=373=a_lever
004=374=a_pull chain
004=375=a_pull chain
004=376=a_button
004=377=a_button
004=378=a_button
004=379=a_switch
004=380=a_switch
004=381=a_lever
004=382=a_pull chain
004=383=a_pull chain
004=384=a_damage trap
004=385=a_teleport trap
004=386=a_arrow trap
004=387=a_do trap
004=388=a_pit trap
004=389=a_change terrain trap
004=390=a_spelltrap
004=391=a_create object trap
004=392=a_door trap
004=393=a_ward trap
004=394=a_tell trap
004=395=a_delete object trap
004=396=an_inventory trap
004=397=a_set variable trap
004=398=a_check variable trap
004=399=a_combination trap
004=400=a_text string trap
004=416=a_move trigger
004=417=a_pick up trigger
004=418=a_use trigger
004=419=a_look trigger
004=420=a_step on trigger
004=421=an_open trigger
004=422=an_unlock trigger
004=448=some_blood
004=449=a_mist cloud
004=450=an_explosion
004=451=an_explosion
004=452=an_explosion
004=453=a_splash&splashes
004=454=a_splash&splahes
004=455=a_spell effect
004=456=some_smoke
004=457=a_fountain
004=458=a_silver tree
004=459=some_damage
004=461=a_sound source
004=462=some_changing terrain
004=463=a_moving door
005=000=broken
005=001=badly damaged
005=002=damaged
005=003=sturdy
005=004=massive
005=005=massive
005=006=ruined
005=007=badly worn
005=008=worn
005=009=servicable
005=010=excellent
005=011=excellent
005=012=shredded
005=013=tattered
005=014=brittle
005=015=ragged
005=016=smooth
005=017=smooth
005=018=worm-infested
005=019=rotten
005=020=smelly
005=021=day-old
005=022=fresh
005=023=fresh
005=024=mold-covered
005=025=moldy
005=026=stale
005=027=day-old
005=028=fresh
005=029=fresh
005=030=broken
005=031=battered
005=032=dented
005=033=undamaged
005=034=new
005=035=new
005=036=ruined
005=037=marred
005=038=scratched
005=039=unblemished
005=040=flawless