Home » CEEFAX disks » telesoftware4.adl » 25-12-87/DTINFO
25-12-87/DTINFO
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » CEEFAX disks » telesoftware4.adl |
Filename: | 25-12-87/DTINFO |
Read OK: | ✔ |
File size: | 0D72 bytes |
Load address: | 0000 |
Exec address: | FFFFFFFF |
Duplicates
There is 1 duplicate copy of this file in the archive:
- CEEFAX disks » telesoftware4.adl » 25-12-87/DTINFO
- CEEFAX disks » telesoftware6.adl » 22-04-88/DTINFO
File contents
Introduction Demon's Tomb (DT) is a traditional adventure based on role playing fantasy games where you have to fight monsters, use magic, collect treasure, solve puzzles, stay alive as long as possible to enhance your "character", and finaly escape from the maze. You move in a large maze of interconnected rooms. You are not alone in the maze, monsters, thieves, rats, computers (!) and other such inhabitants are also present. Your objective is to escape, but first you must destroy the Demon's Tomb, to do this you must use some magic words which will destroy the tomb by their power. These words are given to you by solving puzzles. There are many puzzles to solve, the game operates on a points system so you do not have to solve all the puzzles to escape although some of them, at least, must be solved. Once you have destroyed the tomb, collected all the keys, and accumultaed enough points (about 200) you may escape if you can find the exit ! Programming Most of DT is written in BASIC but due to memory restrictions (and a wish to foil cheats!) the text has been compressed. The compresed text (files TEXT1 and TEXT2) sit above the main program together with a short decoder program (file MC) written in machine code. The text was compressed in two ways. First all the most common words were replaced by numbers. Secondly, the remaining text and the common word reference list had the common two letter combinations (e.g. sh, th, ck) replaced by a number. As a result all possible numbers are used: numbers 0 to 31 are used by two letter combinations, 32 to 127 used as standed ASCII values and 128 to 255 used by common words. The most common character in use (in any text file) is the space character to save on the memory used by spaces each of the common words was set to print a space after it. The end result of the text compression was to reduce 16K of text to just over 8K, with decoding program slightly less than 9K. Unfortunately this was still not enough memory, so an extra 1K had to be claimed by lowering PAGE to &1500 from &1900. If you are using cassette or network systems this will actually be raising PAGE. Most DFS should be able to handle this, if you are unsure check your manuals. Many specialist ROMs and utilities which grab some memory at PAGE will be inactive while playing DT (some may have to be "switched off") but then, I don't think most people will be using such facilities while playing DT. You may find that after playing DT the ROM(s) in question will be acting oddly. A hard break should cure this. Playing the game DT's parser is not up to the standard of "GET ALL I CAN SEE EXCEPT THE HAT". Most of the commands are just 2 words although in some situations more than 2 can be used. Common commands are: GET, WEIGHT, ON, OFF, DATA, INVENT, REST, ATTACK, SWORD, DROP, HEALTH, EAT, and so on. Four commands are of particular interest:- SAVE - save current position LOAD - load old position PRINTER - switch printer on NOPRINTER - switch printer off Cheats read on! Also included is a hint file in encoded form (Hint) plus a decoder program (Hdecode) to display the hint's for any one who gives in to the temptation. We should warn you that the hints are by no means cryptic so once you have read them there will be very little challenge left to the game. GOOD LUCK !!
00000000 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000010 20 20 49 6e 74 72 6f 64 75 63 74 69 6f 6e 0d 20 | Introduction. | 00000020 20 44 65 6d 6f 6e 27 73 20 54 6f 6d 62 20 28 44 | Demon's Tomb (D| 00000030 54 29 20 69 73 20 61 20 74 72 61 64 69 74 69 6f |T) is a traditio| 00000040 6e 61 6c 20 61 64 76 65 6e 74 75 72 65 20 62 61 |nal adventure ba| 00000050 73 65 64 20 6f 6e 20 72 6f 6c 65 20 70 6c 61 79 |sed on role play| 00000060 69 6e 67 0d 66 61 6e 74 61 73 79 20 67 61 6d 65 |ing.fantasy game| 00000070 73 20 77 68 65 72 65 20 79 6f 75 20 68 61 76 65 |s where you have| 00000080 20 74 6f 20 66 69 67 68 74 20 6d 6f 6e 73 74 65 | to fight monste| 00000090 72 73 2c 20 75 73 65 20 6d 61 67 69 63 2c 20 63 |rs, use magic, c| 000000a0 6f 6c 6c 65 63 74 0d 74 72 65 61 73 75 72 65 2c |ollect.treasure,| 000000b0 20 73 6f 6c 76 65 20 70 75 7a 7a 6c 65 73 2c 20 | solve puzzles, | 000000c0 73 74 61 79 20 61 6c 69 76 65 20 61 73 20 6c 6f |stay alive as lo| 000000d0 6e 67 20 61 73 20 70 6f 73 73 69 62 6c 65 20 74 |ng as possible t| 000000e0 6f 20 65 6e 68 61 6e 63 65 20 79 6f 75 72 0d 22 |o enhance your."| 000000f0 63 68 61 72 61 63 74 65 72 22 2c 20 61 6e 64 20 |character", and | 00000100 66 69 6e 61 6c 79 20 65 73 63 61 70 65 20 66 72 |finaly escape fr| 00000110 6f 6d 20 74 68 65 20 6d 61 7a 65 2e 0d 20 20 59 |om the maze.. Y| 00000120 6f 75 20 6d 6f 76 65 20 69 6e 20 61 20 6c 61 72 |ou move in a lar| 00000130 67 65 20 6d 61 7a 65 20 6f 66 20 69 6e 74 65 72 |ge maze of inter| 00000140 63 6f 6e 6e 65 63 74 65 64 20 72 6f 6f 6d 73 2e |connected rooms.| 00000150 20 59 6f 75 20 61 72 65 20 6e 6f 74 20 61 6c 6f | You are not alo| 00000160 6e 65 20 69 6e 0d 74 68 65 20 6d 61 7a 65 2c 20 |ne in.the maze, | 00000170 6d 6f 6e 73 74 65 72 73 2c 20 74 68 69 65 76 65 |monsters, thieve| 00000180 73 2c 20 72 61 74 73 2c 20 63 6f 6d 70 75 74 65 |s, rats, compute| 00000190 72 73 20 28 21 29 20 61 6e 64 20 6f 74 68 65 72 |rs (!) and other| 000001a0 20 73 75 63 68 0d 69 6e 68 61 62 69 74 61 6e 74 | such.inhabitant| 000001b0 73 20 61 72 65 20 61 6c 73 6f 20 70 72 65 73 65 |s are also prese| 000001c0 6e 74 2e 0d 20 20 59 6f 75 72 20 6f 62 6a 65 63 |nt.. Your objec| 000001d0 74 69 76 65 20 69 73 20 74 6f 20 65 73 63 61 70 |tive is to escap| 000001e0 65 2c 20 62 75 74 20 66 69 72 73 74 20 79 6f 75 |e, but first you| 000001f0 20 6d 75 73 74 20 64 65 73 74 72 6f 79 20 74 68 | must destroy th| 00000200 65 20 44 65 6d 6f 6e 27 73 0d 54 6f 6d 62 2c 20 |e Demon's.Tomb, | 00000210 74 6f 20 64 6f 20 74 68 69 73 20 79 6f 75 20 6d |to do this you m| 00000220 75 73 74 20 75 73 65 20 73 6f 6d 65 20 6d 61 67 |ust use some mag| 00000230 69 63 20 77 6f 72 64 73 20 77 68 69 63 68 20 77 |ic words which w| 00000240 69 6c 6c 20 64 65 73 74 72 6f 79 20 74 68 65 0d |ill destroy the.| 00000250 74 6f 6d 62 20 62 79 20 74 68 65 69 72 20 70 6f |tomb by their po| 00000260 77 65 72 2e 20 54 68 65 73 65 20 77 6f 72 64 73 |wer. These words| 00000270 20 61 72 65 20 67 69 76 65 6e 20 74 6f 20 79 6f | are given to yo| 00000280 75 20 62 79 20 73 6f 6c 76 69 6e 67 20 70 75 7a |u by solving puz| 00000290 7a 6c 65 73 2e 0d 54 68 65 72 65 20 61 72 65 20 |zles..There are | 000002a0 6d 61 6e 79 20 70 75 7a 7a 6c 65 73 20 74 6f 20 |many puzzles to | 000002b0 73 6f 6c 76 65 2c 20 74 68 65 20 67 61 6d 65 20 |solve, the game | 000002c0 6f 70 65 72 61 74 65 73 20 6f 6e 20 61 20 70 6f |operates on a po| 000002d0 69 6e 74 73 20 73 79 73 74 65 6d 20 73 6f 0d 79 |ints system so.y| 000002e0 6f 75 20 64 6f 20 6e 6f 74 20 68 61 76 65 20 74 |ou do not have t| 000002f0 6f 20 73 6f 6c 76 65 20 61 6c 6c 20 74 68 65 20 |o solve all the | 00000300 70 75 7a 7a 6c 65 73 20 74 6f 20 65 73 63 61 70 |puzzles to escap| 00000310 65 20 61 6c 74 68 6f 75 67 68 20 73 6f 6d 65 20 |e although some | 00000320 6f 66 0d 74 68 65 6d 2c 20 61 74 20 6c 65 61 73 |of.them, at leas| 00000330 74 2c 20 6d 75 73 74 20 62 65 20 73 6f 6c 76 65 |t, must be solve| 00000340 64 2e 20 4f 6e 63 65 20 79 6f 75 20 68 61 76 65 |d. Once you have| 00000350 20 64 65 73 74 72 6f 79 65 64 20 74 68 65 20 74 | destroyed the t| 00000360 6f 6d 62 2c 0d 63 6f 6c 6c 65 63 74 65 64 20 61 |omb,.collected a| 00000370 6c 6c 20 74 68 65 20 6b 65 79 73 2c 20 61 6e 64 |ll the keys, and| 00000380 20 61 63 63 75 6d 75 6c 74 61 65 64 20 65 6e 6f | accumultaed eno| 00000390 75 67 68 20 70 6f 69 6e 74 73 20 28 61 62 6f 75 |ugh points (abou| 000003a0 74 20 32 30 30 29 20 79 6f 75 0d 6d 61 79 20 65 |t 200) you.may e| 000003b0 73 63 61 70 65 20 69 66 20 79 6f 75 20 63 61 6e |scape if you can| 000003c0 20 66 69 6e 64 20 74 68 65 20 65 78 69 74 20 21 | find the exit !| 000003d0 0d 0d 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |.. | 000003e0 20 20 20 20 50 72 6f 67 72 61 6d 6d 69 6e 67 0d | Programming.| 000003f0 20 20 4d 6f 73 74 20 6f 66 20 44 54 20 69 73 20 | Most of DT is | 00000400 77 72 69 74 74 65 6e 20 69 6e 20 42 41 53 49 43 |written in BASIC| 00000410 20 62 75 74 20 64 75 65 20 74 6f 20 6d 65 6d 6f | but due to memo| 00000420 72 79 20 72 65 73 74 72 69 63 74 69 6f 6e 73 20 |ry restrictions | 00000430 28 61 6e 64 20 61 0d 77 69 73 68 20 74 6f 20 66 |(and a.wish to f| 00000440 6f 69 6c 20 63 68 65 61 74 73 21 29 20 74 68 65 |oil cheats!) the| 00000450 20 74 65 78 74 20 68 61 73 20 62 65 65 6e 20 63 | text has been c| 00000460 6f 6d 70 72 65 73 73 65 64 2e 20 54 68 65 20 63 |ompressed. The c| 00000470 6f 6d 70 72 65 73 65 64 20 74 65 78 74 0d 28 66 |ompresed text.(f| 00000480 69 6c 65 73 20 54 45 58 54 31 20 61 6e 64 20 54 |iles TEXT1 and T| 00000490 45 58 54 32 29 20 73 69 74 20 61 62 6f 76 65 20 |EXT2) sit above | 000004a0 74 68 65 20 6d 61 69 6e 20 70 72 6f 67 72 61 6d |the main program| 000004b0 20 74 6f 67 65 74 68 65 72 20 77 69 74 68 20 61 | together with a| 000004c0 20 73 68 6f 72 74 0d 64 65 63 6f 64 65 72 20 70 | short.decoder p| 000004d0 72 6f 67 72 61 6d 20 28 66 69 6c 65 20 4d 43 29 |rogram (file MC)| 000004e0 20 77 72 69 74 74 65 6e 20 69 6e 20 6d 61 63 68 | written in mach| 000004f0 69 6e 65 20 63 6f 64 65 2e 0d 20 20 54 68 65 20 |ine code.. The | 00000500 74 65 78 74 20 77 61 73 20 63 6f 6d 70 72 65 73 |text was compres| 00000510 73 65 64 20 69 6e 20 74 77 6f 20 77 61 79 73 2e |sed in two ways.| 00000520 20 46 69 72 73 74 20 61 6c 6c 20 74 68 65 20 6d | First all the m| 00000530 6f 73 74 20 63 6f 6d 6d 6f 6e 20 77 6f 72 64 73 |ost common words| 00000540 0d 77 65 72 65 20 72 65 70 6c 61 63 65 64 20 62 |.were replaced b| 00000550 79 20 6e 75 6d 62 65 72 73 2e 20 53 65 63 6f 6e |y numbers. Secon| 00000560 64 6c 79 2c 20 74 68 65 20 72 65 6d 61 69 6e 69 |dly, the remaini| 00000570 6e 67 20 74 65 78 74 20 61 6e 64 20 74 68 65 20 |ng text and the | 00000580 63 6f 6d 6d 6f 6e 0d 77 6f 72 64 20 72 65 66 65 |common.word refe| 00000590 72 65 6e 63 65 20 6c 69 73 74 20 68 61 64 20 74 |rence list had t| 000005a0 68 65 20 63 6f 6d 6d 6f 6e 20 74 77 6f 20 6c 65 |he common two le| 000005b0 74 74 65 72 20 63 6f 6d 62 69 6e 61 74 69 6f 6e |tter combination| 000005c0 73 20 28 65 2e 67 2e 20 73 68 2c 20 74 68 2c 0d |s (e.g. sh, th,.| 000005d0 63 6b 29 20 72 65 70 6c 61 63 65 64 20 62 79 20 |ck) replaced by | 000005e0 61 20 6e 75 6d 62 65 72 2e 20 41 73 20 61 20 72 |a number. As a r| 000005f0 65 73 75 6c 74 20 61 6c 6c 20 70 6f 73 73 69 62 |esult all possib| 00000600 6c 65 20 6e 75 6d 62 65 72 73 20 61 72 65 20 75 |le numbers are u| 00000610 73 65 64 3a 0d 6e 75 6d 62 65 72 73 20 30 20 74 |sed:.numbers 0 t| 00000620 6f 20 33 31 20 61 72 65 20 75 73 65 64 20 62 79 |o 31 are used by| 00000630 20 74 77 6f 20 6c 65 74 74 65 72 20 63 6f 6d 62 | two letter comb| 00000640 69 6e 61 74 69 6f 6e 73 2c 20 33 32 20 74 6f 20 |inations, 32 to | 00000650 31 32 37 20 75 73 65 64 20 61 73 0d 73 74 61 6e |127 used as.stan| 00000660 64 65 64 20 41 53 43 49 49 20 76 61 6c 75 65 73 |ded ASCII values| 00000670 20 61 6e 64 20 31 32 38 20 74 6f 20 32 35 35 20 | and 128 to 255 | 00000680 75 73 65 64 20 62 79 20 63 6f 6d 6d 6f 6e 20 77 |used by common w| 00000690 6f 72 64 73 2e 20 54 68 65 20 6d 6f 73 74 20 63 |ords. The most c| 000006a0 6f 6d 6d 6f 6e 0d 63 68 61 72 61 63 74 65 72 20 |ommon.character | 000006b0 69 6e 20 75 73 65 20 28 69 6e 20 61 6e 79 20 74 |in use (in any t| 000006c0 65 78 74 20 66 69 6c 65 29 20 69 73 20 74 68 65 |ext file) is the| 000006d0 20 73 70 61 63 65 20 63 68 61 72 61 63 74 65 72 | space character| 000006e0 20 74 6f 20 73 61 76 65 20 6f 6e 0d 74 68 65 20 | to save on.the | 000006f0 6d 65 6d 6f 72 79 20 75 73 65 64 20 62 79 20 73 |memory used by s| 00000700 70 61 63 65 73 20 65 61 63 68 20 6f 66 20 74 68 |paces each of th| 00000710 65 20 63 6f 6d 6d 6f 6e 20 77 6f 72 64 73 20 77 |e common words w| 00000720 61 73 20 73 65 74 20 74 6f 20 70 72 69 6e 74 20 |as set to print | 00000730 61 0d 73 70 61 63 65 20 61 66 74 65 72 20 69 74 |a.space after it| 00000740 2e 0d 20 20 54 68 65 20 65 6e 64 20 72 65 73 75 |.. The end resu| 00000750 6c 74 20 6f 66 20 74 68 65 20 74 65 78 74 20 63 |lt of the text c| 00000760 6f 6d 70 72 65 73 73 69 6f 6e 20 77 61 73 20 74 |ompression was t| 00000770 6f 20 72 65 64 75 63 65 20 31 36 4b 20 6f 66 20 |o reduce 16K of | 00000780 74 65 78 74 20 74 6f 0d 6a 75 73 74 20 6f 76 65 |text to.just ove| 00000790 72 20 38 4b 2c 20 77 69 74 68 20 64 65 63 6f 64 |r 8K, with decod| 000007a0 69 6e 67 20 70 72 6f 67 72 61 6d 20 73 6c 69 67 |ing program slig| 000007b0 68 74 6c 79 20 6c 65 73 73 20 74 68 61 6e 20 39 |htly less than 9| 000007c0 4b 2e 20 55 6e 66 6f 72 74 75 6e 61 74 65 6c 79 |K. Unfortunately| 000007d0 0d 74 68 69 73 20 77 61 73 20 73 74 69 6c 6c 20 |.this was still | 000007e0 6e 6f 74 20 65 6e 6f 75 67 68 20 6d 65 6d 6f 72 |not enough memor| 000007f0 79 2c 20 73 6f 20 61 6e 20 65 78 74 72 61 20 31 |y, so an extra 1| 00000800 4b 20 68 61 64 20 74 6f 20 62 65 20 63 6c 61 69 |K had to be clai| 00000810 6d 65 64 20 62 79 0d 6c 6f 77 65 72 69 6e 67 20 |med by.lowering | 00000820 50 41 47 45 20 74 6f 20 26 31 35 30 30 20 66 72 |PAGE to &1500 fr| 00000830 6f 6d 20 26 31 39 30 30 2e 20 49 66 20 79 6f 75 |om &1900. If you| 00000840 20 61 72 65 20 75 73 69 6e 67 20 63 61 73 73 65 | are using casse| 00000850 74 74 65 20 6f 72 20 6e 65 74 77 6f 72 6b 0d 73 |tte or network.s| 00000860 79 73 74 65 6d 73 20 74 68 69 73 20 77 69 6c 6c |ystems this will| 00000870 20 61 63 74 75 61 6c 6c 79 20 62 65 20 72 61 69 | actually be rai| 00000880 73 69 6e 67 20 50 41 47 45 2e 20 4d 6f 73 74 20 |sing PAGE. Most | 00000890 44 46 53 20 73 68 6f 75 6c 64 20 62 65 20 61 62 |DFS should be ab| 000008a0 6c 65 20 74 6f 0d 68 61 6e 64 6c 65 20 74 68 69 |le to.handle thi| 000008b0 73 2c 20 69 66 20 79 6f 75 20 61 72 65 20 75 6e |s, if you are un| 000008c0 73 75 72 65 20 63 68 65 63 6b 20 79 6f 75 72 20 |sure check your | 000008d0 6d 61 6e 75 61 6c 73 2e 20 4d 61 6e 79 20 73 70 |manuals. Many sp| 000008e0 65 63 69 61 6c 69 73 74 20 52 4f 4d 73 0d 61 6e |ecialist ROMs.an| 000008f0 64 20 75 74 69 6c 69 74 69 65 73 20 77 68 69 63 |d utilities whic| 00000900 68 20 67 72 61 62 20 73 6f 6d 65 20 6d 65 6d 6f |h grab some memo| 00000910 72 79 20 61 74 20 50 41 47 45 20 77 69 6c 6c 20 |ry at PAGE will | 00000920 62 65 20 69 6e 61 63 74 69 76 65 20 77 68 69 6c |be inactive whil| 00000930 65 0d 70 6c 61 79 69 6e 67 20 44 54 20 28 73 6f |e.playing DT (so| 00000940 6d 65 20 6d 61 79 20 68 61 76 65 20 74 6f 20 62 |me may have to b| 00000950 65 20 22 73 77 69 74 63 68 65 64 20 6f 66 66 22 |e "switched off"| 00000960 29 20 62 75 74 20 74 68 65 6e 2c 20 49 20 64 6f |) but then, I do| 00000970 6e 27 74 20 74 68 69 6e 6b 0d 6d 6f 73 74 20 70 |n't think.most p| 00000980 65 6f 70 6c 65 20 77 69 6c 6c 20 62 65 20 75 73 |eople will be us| 00000990 69 6e 67 20 73 75 63 68 20 66 61 63 69 6c 69 74 |ing such facilit| 000009a0 69 65 73 20 77 68 69 6c 65 20 70 6c 61 79 69 6e |ies while playin| 000009b0 67 20 44 54 2e 20 59 6f 75 20 6d 61 79 20 66 69 |g DT. You may fi| 000009c0 6e 64 0d 74 68 61 74 20 61 66 74 65 72 20 70 6c |nd.that after pl| 000009d0 61 79 69 6e 67 20 44 54 20 74 68 65 20 52 4f 4d |aying DT the ROM| 000009e0 28 73 29 20 69 6e 20 71 75 65 73 74 69 6f 6e 20 |(s) in question | 000009f0 77 69 6c 6c 20 62 65 20 61 63 74 69 6e 67 20 6f |will be acting o| 00000a00 64 64 6c 79 2e 20 41 20 68 61 72 64 0d 62 72 65 |ddly. A hard.bre| 00000a10 61 6b 20 73 68 6f 75 6c 64 20 63 75 72 65 20 74 |ak should cure t| 00000a20 68 69 73 2e 0d 0d 20 20 20 20 20 20 20 20 20 20 |his... | 00000a30 20 20 20 20 20 20 20 20 50 6c 61 79 69 6e 67 20 | Playing | 00000a40 74 68 65 20 67 61 6d 65 0d 20 20 44 54 27 73 20 |the game. DT's | 00000a50 70 61 72 73 65 72 20 69 73 20 6e 6f 74 20 75 70 |parser is not up| 00000a60 20 74 6f 20 74 68 65 20 73 74 61 6e 64 61 72 64 | to the standard| 00000a70 20 6f 66 20 22 47 45 54 20 41 4c 4c 20 49 20 43 | of "GET ALL I C| 00000a80 41 4e 20 53 45 45 20 45 58 43 45 50 54 20 54 48 |AN SEE EXCEPT TH| 00000a90 45 0d 48 41 54 22 2e 20 4d 6f 73 74 20 6f 66 20 |E.HAT". Most of | 00000aa0 74 68 65 20 63 6f 6d 6d 61 6e 64 73 20 61 72 65 |the commands are| 00000ab0 20 6a 75 73 74 20 32 20 77 6f 72 64 73 20 61 6c | just 2 words al| 00000ac0 74 68 6f 75 67 68 20 69 6e 20 73 6f 6d 65 20 73 |though in some s| 00000ad0 69 74 75 61 74 69 6f 6e 73 0d 6d 6f 72 65 20 74 |ituations.more t| 00000ae0 68 61 6e 20 32 20 63 61 6e 20 62 65 20 75 73 65 |han 2 can be use| 00000af0 64 2e 20 43 6f 6d 6d 6f 6e 20 63 6f 6d 6d 61 6e |d. Common comman| 00000b00 64 73 20 61 72 65 3a 20 47 45 54 2c 20 57 45 49 |ds are: GET, WEI| 00000b10 47 48 54 2c 20 4f 4e 2c 20 4f 46 46 2c 20 44 41 |GHT, ON, OFF, DA| 00000b20 54 41 2c 0d 49 4e 56 45 4e 54 2c 20 52 45 53 54 |TA,.INVENT, REST| 00000b30 2c 20 41 54 54 41 43 4b 2c 20 53 57 4f 52 44 2c |, ATTACK, SWORD,| 00000b40 20 44 52 4f 50 2c 20 48 45 41 4c 54 48 2c 20 45 | DROP, HEALTH, E| 00000b50 41 54 2c 20 61 6e 64 20 73 6f 20 6f 6e 2e 20 46 |AT, and so on. F| 00000b60 6f 75 72 20 63 6f 6d 6d 61 6e 64 73 0d 61 72 65 |our commands.are| 00000b70 20 6f 66 20 70 61 72 74 69 63 75 6c 61 72 20 69 | of particular i| 00000b80 6e 74 65 72 65 73 74 3a 2d 0d 20 53 41 56 45 20 |nterest:-. SAVE | 00000b90 2d 20 73 61 76 65 20 63 75 72 72 65 6e 74 20 70 |- save current p| 00000ba0 6f 73 69 74 69 6f 6e 0d 20 4c 4f 41 44 20 2d 20 |osition. LOAD - | 00000bb0 6c 6f 61 64 20 6f 6c 64 20 70 6f 73 69 74 69 6f |load old positio| 00000bc0 6e 0d 20 50 52 49 4e 54 45 52 20 2d 20 73 77 69 |n. PRINTER - swi| 00000bd0 74 63 68 20 70 72 69 6e 74 65 72 20 6f 6e 0d 20 |tch printer on. | 00000be0 4e 4f 50 52 49 4e 54 45 52 20 2d 20 73 77 69 74 |NOPRINTER - swit| 00000bf0 63 68 20 70 72 69 6e 74 65 72 20 6f 66 66 0d 0d |ch printer off..| 00000c00 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000c10 20 20 43 68 65 61 74 73 20 72 65 61 64 20 6f 6e | Cheats read on| 00000c20 21 0d 20 20 41 6c 73 6f 20 69 6e 63 6c 75 64 65 |!. Also include| 00000c30 64 20 69 73 20 61 20 68 69 6e 74 20 66 69 6c 65 |d is a hint file| 00000c40 20 69 6e 20 65 6e 63 6f 64 65 64 20 66 6f 72 6d | in encoded form| 00000c50 20 28 48 69 6e 74 29 20 70 6c 75 73 20 61 20 64 | (Hint) plus a d| 00000c60 65 63 6f 64 65 72 0d 70 72 6f 67 72 61 6d 20 28 |ecoder.program (| 00000c70 48 64 65 63 6f 64 65 29 20 74 6f 20 64 69 73 70 |Hdecode) to disp| 00000c80 6c 61 79 20 74 68 65 20 68 69 6e 74 27 73 20 66 |lay the hint's f| 00000c90 6f 72 20 61 6e 79 20 6f 6e 65 20 77 68 6f 20 67 |or any one who g| 00000ca0 69 76 65 73 20 69 6e 20 74 6f 20 74 68 65 0d 74 |ives in to the.t| 00000cb0 65 6d 70 74 61 74 69 6f 6e 2e 20 57 65 20 73 68 |emptation. We sh| 00000cc0 6f 75 6c 64 20 77 61 72 6e 20 79 6f 75 20 74 68 |ould warn you th| 00000cd0 61 74 20 74 68 65 20 68 69 6e 74 73 20 61 72 65 |at the hints are| 00000ce0 20 62 79 20 6e 6f 20 6d 65 61 6e 73 20 63 72 79 | by no means cry| 00000cf0 70 74 69 63 20 73 6f 0d 6f 6e 63 65 20 79 6f 75 |ptic so.once you| 00000d00 20 68 61 76 65 20 72 65 61 64 20 74 68 65 6d 20 | have read them | 00000d10 74 68 65 72 65 20 77 69 6c 6c 20 62 65 20 76 65 |there will be ve| 00000d20 72 79 20 6c 69 74 74 6c 65 20 63 68 61 6c 6c 65 |ry little challe| 00000d30 6e 67 65 20 6c 65 66 74 20 74 6f 20 74 68 65 0d |nge left to the.| 00000d40 67 61 6d 65 2e 0d 20 20 20 20 20 20 20 20 20 20 |game.. | 00000d50 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000d60 20 20 20 20 20 47 4f 4f 44 20 4c 55 43 4b 20 21 | GOOD LUCK !| 00000d70 21 0d |!.| 00000d72