Home » Personal collection » Acorn ADFS disks » Electron » Play_it_again_Sam_5_10.ADF » Sam5/Moonraider/GAME1

Sam5/Moonraider/GAME1

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 » Personal collection » Acorn ADFS disks » Electron » Play_it_again_Sam_5_10.ADF
Filename: Sam5/Moonraider/GAME1
Read OK:
File size: 0A82 bytes
Load address: 1100
Exec address: 1100
Duplicates

There are 3 duplicate copies of this file in the archive:

File contents
   10REM         Moon Raider
   11 
   12REM    (c) 1983  Program Power
   20 
   30REM    Written by David Elliot
   40 
   45REM      Elliot Software Ltd
   46 
   60IF PAGE=&B00 THEN */GAME
   80DIM key$(122),com$(5),add%(5),ks% 9
   90PROCinit
  100REM ON ERROR GOTO 26000
 1000ON ERROR RUN
 1010MODE4
 1015*FX200,0
 1020PROCtitle
 1030PRINT
 1050PRINT" By David Elliot (c) 1983 Program Power"
 1100PROCinstructions
 2000 
 2020PRINT"  Press Space to start"
 2030PRINT'"  Press RETURN to define keys"
 3000A$=GET$
 3010IF A$=" " THEN 32000
 3020IF A$=CHR$13 THEN 4000
 3030GOTO 3000
 4000MODE6
 4020 
 4100 
 4110CLS
 4125PRINT"            DEFINE USER KEYS"
 4130PRINT
 4135PRINT " Press your preferred control key"
 4136PRINT
 4140FOR A%=0 TO 5
 4150PRINT " Press "com$(A%);TAB(16);" key ";TAB(24);
 4160C%=0
 4165REPEAT
 4170FOR B%=-1 TO -122 STEP -1
 4180IF INKEYB% C%=B%
 4190NEXT
 4200UNTILC%<0
 4210 
 4220IF key$(-C%)="" THEN 4160
 4230A%?&A00=C%
 4231IF PAGE=&B00 THEN $ks%=key$(-C%)+"   ":!add%(A%)=!ks%
 4235PRINTkey$(-C%)
 4236REPEAT UNTIL INKEY(C%)=0
 4240NEXTA%
 4300PRINT'
 4340PRINT
 4350TIME=0:T%=TIME:REPEATUNTILTIME=T%+400
 8000*FX 15 0
 9000GOTO 1000
10000 
10010DEF FNkey(A%)
10020LOCAL B%,A$
10025PRINTTAB(27);
10030A$=key$(256-A%?&A00)
10040IF A$="" THEN PRINT "None":=""
10050 
10060PRINT A$
10070=""
15000 
15010DEFPROCtitle
15020COLOUR0:COLOUR129
15030PRINTTAB(12,1)"               "
15040PRINTTAB(12,2)"  MOON RAIDER  "
15050PRINTTAB(12,3)"               "
15060COLOUR1:COLOUR128:ENDPROC
20000 
20010DEF PROCinit
20020RESTORE
20021FOR A%=0 TO 5:READ com$(A%),add%(A%):NEXT
20030FOR A%=1 TO 122
20040READ key$(A%)
20050NEXT
20060A%=&A00:?A%=-102:A%?1=-66:A%?2=-103:A%?3=-104:A%?4=-82:A%?5=-67:A%?6=-17:A%?7=-34:A%?8=-56
20099ENDPROC
24000 
24010DATA Laser,&495A
24020DATA Bomb,&4968
24030DATA Left,&493F
24040DATA Right,&494C
24050DATA Up,&4927
24060DATA Down,&4932
25000 
25010REM    Data for keys
25020 
25030DATA Shft,Ctrl,,,,,,,,,,,,,,
25040DATA Q,3,4,5,f4,8,f7,-,^,Left
25050DATA ,,,,,,f0,W,E,T,7,I,9,0
25060DATA _,Down,,,,,,,1
25070DATA 2,D,R,6,U,O,P,[,Up
25080DATA ,,,,,,Caps,A,X,F,Y
25090DATA J,K,@,:,Ret,,,,,
25100DATA ,Lock,S,C,G,H,N,L,;,]
25110DATA Del,,,,,,,Tab,Z,Spce
25120DATA V,B,M,',.,/,Copy,,,
25130DATA ,,,Escape,f1,f2,f3,f5,f6,f8
25140DATA f9,\,rght,
26000 
26005IF ERR=17 AND ERL>4099 AND ERL<5000 THEN 1000
26010IF ERR=17 THEN 27000
26020REPORT:PRINT" at line ";ERL
26030END
30000 
30010DEF PROCinstructions
30020 
30030VDU19,1,6;0;
30120PRINT
30130PRINT"     Your mission is to raid an Alien"
30140PRINT"  base situated on the Moon.  However"
30150PRINT"  there are five stages of defences to"
30160PRINT"  negotiate before you can destroy the"
30170PRINT"  alien command base and complete your"
30180PRINT"  first mission. Further missions will"
30190PRINT"  be even more difficult !"
30200PRINT
30210PRINT"    You are in command of a highly"
30220PRINT"  manoeuvrable ship equipped with"
30230PRINT"  a rapid fire laser and the latest"
30240PRINT"  Tyrex bombs."
30241PRINT
30242PRINT"    You must refuel between stages"
30243PRINT"  by docking with the Space Tanker"
30250PRINT
30260PRINT"    You can skip stages of the"
30270PRINT"  defences and select a more"
30280PRINT"  difficult mission by pressing keys"
30290PRINT"  1 to 5 and A to D."
30900PRINT
30930ENDPROC
32000IF PAGE=&B00 THEN CALL&1900
32010*L.PICT1
32020*L.BIT
32030*L. CHARS1
32040*L. MAP
32050*/RAIDOBJ

�         Moon Raider
 
 �    (c) 1983  Program Power
 
 �    Written by David Elliot
( 
-�      Elliot Software Ltd
. 
<� �=&B00 � */GAME
P%� key$(122),com$(5),add%(5),ks% 9
Z	�init
d� ON ERROR GOTO 26000
�	� � �
��4
�*FX200,0
�
�title
�
.�" By David Elliot (c) 1983 Program Power"
L�instructions
� 
��"  Press Space to start"
�%�'"  Press RETURN to define keys"
�A$=�
�� A$=" " � �P@}
�� A$=�13 � �t`O
�
� �txK
��6
� 
 
�
#�"            DEFINE USER KEYS"
"�
')� " Press your preferred control key"
(�
,� A%=0 � 5
6*� " Press "com$(A%);�16);" key ";�24);
@C%=0
E�
J� B%=-1 � -122 � -1
T� �B% C%=B%
^�
h	�C%<0
r 
|� key$(-C%)="" � �D@P
�A%?&A00=C%
�2� �=&B00 � $ks%=key$(-C%)+"   ":!add%(A%)=!ks%
��key$(-C%)
�� � �(C%)=0
��A%
��'
��
��=0:T%=�:���=T%+400
@*FX 15 0
#(
� �dhC
' 
'� �key(A%)
'$� B%,A$
')
�27);
'.A$=key$(256-A%?&A00)
'8� A$="" � � "None":=""
'B 
'L� A$
'V=""
:� 
:���title
:��0:�129
:��12,1)"               "
:��12,2)"  MOON RAIDER  "
:��12,3)"               "
:�
�1:�128:�
N  
N*� �init
N4�
N5$� A%=0 � 5:� com$(A%),add%(A%):�
N>� A%=1 � 122
NH� key$(A%)
NR�
N\^A%=&A00:?A%=-102:A%?1=-66:A%?2=-103:A%?3=-104:A%?4=-82:A%?5=-67:A%?6=-17:A%?7=-34:A%?8=-56
N��
]� 
]�� Laser,&495A
]�� Bomb,&4968
]�� Left,&493F
]�� Right,&494C
]�� Up,&4927
]�� Down,&4932
a� 
a��    Data for keys
a� 
a�� Shft,Ctrl,,,,,,,,,,,,,,
a�� Q,3,4,5,f4,8,f7,-,^,Left
a�� ,,,,,,f0,W,E,T,7,I,9,0
a�� _,Down,,,,,,,1
a�� 2,D,R,6,U,O,P,[,Up
a�� ,,,,,,Caps,A,X,F,Y
b� J,K,@,:,Ret,,,,,
b� ,Lock,S,C,G,H,N,L,;,]
b� Del,,,,,,,Tab,Z,Spce
b � V,B,M,',.,/,Copy,,,
b*!� ,,,Escape,f1,f2,f3,f5,f6,f8
b4� f9,\,rght,
e� 
e�#� �=17 � �>4099 � �<5000 � �dhC
e�� �=17 � �@xi
e��:�" at line ";�
e��
u0 
u:� �instructions
uD 
uN�19,1,6;0;
u��
u�,�"     Your mission is to raid an Alien"
u�,�"  base situated on the Moon.  However"
u�-�"  there are five stages of defences to"
u�-�"  negotiate before you can destroy the"
u�-�"  alien command base and complete your"
u�-�"  first mission. Further missions will"
u�!�"  be even more difficult !"
u��
v)�"    You are in command of a highly"
v(�"  manoeuvrable ship equipped with"
v*�"  a rapid fire laser and the latest"
v �"  Tyrex bombs."
v!�
v")�"    You must refuel between stages"
v#)�"  by docking with the Space Tanker"
v*�
v4%�"    You can skip stages of the"
v>#�"  defences and select a more"
vH+�"  difficult mission by pressing keys"
vR�"  1 to 5 and A to D."
x��
x��
}� �=&B00 � �&1900
}
*L.PICT1
}
*L.BIT
}*L. CHARS1
}(*L. MAP
}2
*/RAIDOBJ
�3vu����"
00000000  0d 00 0a 19 f4 20 20 20  20 20 20 20 20 20 4d 6f  |.....         Mo|
00000010  6f 6e 20 52 61 69 64 65  72 0d 00 0b 05 20 0d 00  |on Raider.... ..|
00000020  0c 20 f4 20 20 20 20 28  63 29 20 31 39 38 33 20  |. .    (c) 1983 |
00000030  20 50 72 6f 67 72 61 6d  20 50 6f 77 65 72 0d 00  | Program Power..|
00000040  14 05 20 0d 00 1e 20 f4  20 20 20 20 57 72 69 74  |.. ... .    Writ|
00000050  74 65 6e 20 62 79 20 44  61 76 69 64 20 45 6c 6c  |ten by David Ell|
00000060  69 6f 74 0d 00 28 05 20  0d 00 2d 1e f4 20 20 20  |iot..(. ..-..   |
00000070  20 20 20 45 6c 6c 69 6f  74 20 53 6f 66 74 77 61  |   Elliot Softwa|
00000080  72 65 20 4c 74 64 0d 00  2e 05 20 0d 00 3c 15 e7  |re Ltd.... ..<..|
00000090  20 90 3d 26 42 30 30 20  8c 20 2a 2f 47 41 4d 45  | .=&B00 . */GAME|
000000a0  0d 00 50 25 de 20 6b 65  79 24 28 31 32 32 29 2c  |..P%. key$(122),|
000000b0  63 6f 6d 24 28 35 29 2c  61 64 64 25 28 35 29 2c  |com$(5),add%(5),|
000000c0  6b 73 25 20 39 0d 00 5a  09 f2 69 6e 69 74 0d 00  |ks% 9..Z..init..|
000000d0  64 19 f4 20 4f 4e 20 45  52 52 4f 52 20 47 4f 54  |d.. ON ERROR GOT|
000000e0  4f 20 32 36 30 30 30 0d  03 e8 09 ee 20 85 20 f9  |O 26000..... . .|
000000f0  0d 03 f2 06 eb 34 0d 03  f7 0c 2a 46 58 32 30 30  |.....4....*FX200|
00000100  2c 30 0d 03 fc 0a f2 74  69 74 6c 65 0d 04 06 05  |,0.....title....|
00000110  f1 0d 04 1a 2e f1 22 20  42 79 20 44 61 76 69 64  |......" By David|
00000120  20 45 6c 6c 69 6f 74 20  28 63 29 20 31 39 38 33  | Elliot (c) 1983|
00000130  20 50 72 6f 67 72 61 6d  20 50 6f 77 65 72 22 0d  | Program Power".|
00000140  04 4c 11 f2 69 6e 73 74  72 75 63 74 69 6f 6e 73  |.L..instructions|
00000150  0d 07 d0 05 20 0d 07 e4  1d f1 22 20 20 50 72 65  |.... ....."  Pre|
00000160  73 73 20 53 70 61 63 65  20 74 6f 20 73 74 61 72  |ss Space to star|
00000170  74 22 0d 07 ee 25 f1 27  22 20 20 50 72 65 73 73  |t"...%.'"  Press|
00000180  20 52 45 54 55 52 4e 20  74 6f 20 64 65 66 69 6e  | RETURN to defin|
00000190  65 20 6b 65 79 73 22 0d  0b b8 08 41 24 3d be 0d  |e keys"....A$=..|
000001a0  0b c2 13 e7 20 41 24 3d  22 20 22 20 8c 20 8d 50  |.... A$=" " . .P|
000001b0  40 7d 0d 0b cc 13 e7 20  41 24 3d bd 31 33 20 8c  |@}..... A$=.13 .|
000001c0  20 8d 74 60 4f 0d 0b d6  0a e5 20 8d 74 78 4b 0d  | .t`O..... .txK.|
000001d0  0f a0 06 eb 36 0d 0f b4  05 20 0d 10 04 05 20 0d  |....6.... .... .|
000001e0  10 0e 05 db 0d 10 1d 23  f1 22 20 20 20 20 20 20  |.......#."      |
000001f0  20 20 20 20 20 20 44 45  46 49 4e 45 20 55 53 45  |      DEFINE USE|
00000200  52 20 4b 45 59 53 22 0d  10 22 05 f1 0d 10 27 29  |R KEYS".."....')|
00000210  f1 20 22 20 50 72 65 73  73 20 79 6f 75 72 20 70  |. " Press your p|
00000220  72 65 66 65 72 72 65 64  20 63 6f 6e 74 72 6f 6c  |referred control|
00000230  20 6b 65 79 22 0d 10 28  05 f1 0d 10 2c 0e e3 20  | key"..(....,.. |
00000240  41 25 3d 30 20 b8 20 35  0d 10 36 2a f1 20 22 20  |A%=0 . 5..6*. " |
00000250  50 72 65 73 73 20 22 63  6f 6d 24 28 41 25 29 3b  |Press "com$(A%);|
00000260  8a 31 36 29 3b 22 20 6b  65 79 20 22 3b 8a 32 34  |.16);" key ";.24|
00000270  29 3b 0d 10 40 08 43 25  3d 30 0d 10 45 05 f5 0d  |);..@.C%=0..E...|
00000280  10 4a 17 e3 20 42 25 3d  2d 31 20 b8 20 2d 31 32  |.J.. B%=-1 . -12|
00000290  32 20 88 20 2d 31 0d 10  54 0f e7 20 a6 42 25 20  |2 . -1..T.. .B% |
000002a0  43 25 3d 42 25 0d 10 5e  05 ed 0d 10 68 09 fd 43  |C%=B%..^....h..C|
000002b0  25 3c 30 0d 10 72 05 20  0d 10 7c 19 e7 20 6b 65  |%<0..r. ..|.. ke|
000002c0  79 24 28 2d 43 25 29 3d  22 22 20 8c 20 8d 44 40  |y$(-C%)="" . .D@|
000002d0  50 0d 10 86 0e 41 25 3f  26 41 30 30 3d 43 25 0d  |P....A%?&A00=C%.|
000002e0  10 87 32 e7 20 90 3d 26  42 30 30 20 8c 20 24 6b  |..2. .=&B00 . $k|
000002f0  73 25 3d 6b 65 79 24 28  2d 43 25 29 2b 22 20 20  |s%=key$(-C%)+"  |
00000300  20 22 3a 21 61 64 64 25  28 41 25 29 3d 21 6b 73  | ":!add%(A%)=!ks|
00000310  25 0d 10 8b 0e f1 6b 65  79 24 28 2d 43 25 29 0d  |%.....key$(-C%).|
00000320  10 8c 0f f5 20 fd 20 a6  28 43 25 29 3d 30 0d 10  |.... . .(C%)=0..|
00000330  90 07 ed 41 25 0d 10 cc  06 f1 27 0d 10 f4 05 f1  |...A%.....'.....|
00000340  0d 10 fe 17 d1 3d 30 3a  54 25 3d 91 3a f5 fd 91  |.....=0:T%=.:...|
00000350  3d 54 25 2b 34 30 30 0d  1f 40 0c 2a 46 58 20 31  |=T%+400..@.*FX 1|
00000360  35 20 30 0d 23 28 0a e5  20 8d 64 68 43 0d 27 10  |5 0.#(.. .dhC.'.|
00000370  05 20 0d 27 1a 0e dd 20  a4 6b 65 79 28 41 25 29  |. .'... .key(A%)|
00000380  0d 27 24 0b ea 20 42 25  2c 41 24 0d 27 29 0a f1  |.'$.. B%,A$.')..|
00000390  8a 32 37 29 3b 0d 27 2e  18 41 24 3d 6b 65 79 24  |.27);.'..A$=key$|
000003a0  28 32 35 36 2d 41 25 3f  26 41 30 30 29 0d 27 38  |(256-A%?&A00).'8|
000003b0  1a e7 20 41 24 3d 22 22  20 8c 20 f1 20 22 4e 6f  |.. A$="" . . "No|
000003c0  6e 65 22 3a 3d 22 22 0d  27 42 05 20 0d 27 4c 08  |ne":="".'B. .'L.|
000003d0  f1 20 41 24 0d 27 56 07  3d 22 22 0d 3a 98 05 20  |. A$.'V.="".:.. |
000003e0  0d 3a a2 0b dd f2 74 69  74 6c 65 0d 3a ac 0b fb  |.:....title.:...|
000003f0  30 3a fb 31 32 39 0d 3a  b6 1c f1 8a 31 32 2c 31  |0:.129.:....12,1|
00000400  29 22 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |)"              |
00000410  20 22 0d 3a c0 1c f1 8a  31 32 2c 32 29 22 20 20  | ".:....12,2)"  |
00000420  4d 4f 4f 4e 20 52 41 49  44 45 52 20 20 22 0d 3a  |MOON RAIDER  ".:|
00000430  ca 1c f1 8a 31 32 2c 33  29 22 20 20 20 20 20 20  |....12,3)"      |
00000440  20 20 20 20 20 20 20 20  20 22 0d 3a d4 0d fb 31  |         ".:...1|
00000450  3a fb 31 32 38 3a e1 0d  4e 20 05 20 0d 4e 2a 0b  |:.128:..N . .N*.|
00000460  dd 20 f2 69 6e 69 74 0d  4e 34 05 f7 0d 4e 35 24  |. .init.N4...N5$|
00000470  e3 20 41 25 3d 30 20 b8  20 35 3a f3 20 63 6f 6d  |. A%=0 . 5:. com|
00000480  24 28 41 25 29 2c 61 64  64 25 28 41 25 29 3a ed  |$(A%),add%(A%):.|
00000490  0d 4e 3e 10 e3 20 41 25  3d 31 20 b8 20 31 32 32  |.N>.. A%=1 . 122|
000004a0  0d 4e 48 0e f3 20 6b 65  79 24 28 41 25 29 0d 4e  |.NH.. key$(A%).N|
000004b0  52 05 ed 0d 4e 5c 5e 41  25 3d 26 41 30 30 3a 3f  |R...N\^A%=&A00:?|
000004c0  41 25 3d 2d 31 30 32 3a  41 25 3f 31 3d 2d 36 36  |A%=-102:A%?1=-66|
000004d0  3a 41 25 3f 32 3d 2d 31  30 33 3a 41 25 3f 33 3d  |:A%?2=-103:A%?3=|
000004e0  2d 31 30 34 3a 41 25 3f  34 3d 2d 38 32 3a 41 25  |-104:A%?4=-82:A%|
000004f0  3f 35 3d 2d 36 37 3a 41  25 3f 36 3d 2d 31 37 3a  |?5=-67:A%?6=-17:|
00000500  41 25 3f 37 3d 2d 33 34  3a 41 25 3f 38 3d 2d 35  |A%?7=-34:A%?8=-5|
00000510  36 0d 4e 83 05 e1 0d 5d  c0 05 20 0d 5d ca 11 dc  |6.N....].. .]...|
00000520  20 4c 61 73 65 72 2c 26  34 39 35 41 0d 5d d4 10  | Laser,&495A.]..|
00000530  dc 20 42 6f 6d 62 2c 26  34 39 36 38 0d 5d de 10  |. Bomb,&4968.]..|
00000540  dc 20 4c 65 66 74 2c 26  34 39 33 46 0d 5d e8 11  |. Left,&493F.]..|
00000550  dc 20 52 69 67 68 74 2c  26 34 39 34 43 0d 5d f2  |. Right,&494C.].|
00000560  0e dc 20 55 70 2c 26 34  39 32 37 0d 5d fc 10 dc  |.. Up,&4927.]...|
00000570  20 44 6f 77 6e 2c 26 34  39 33 32 0d 61 a8 05 20  | Down,&4932.a.. |
00000580  0d 61 b2 16 f4 20 20 20  20 44 61 74 61 20 66 6f  |.a...    Data fo|
00000590  72 20 6b 65 79 73 0d 61  bc 05 20 0d 61 c6 1d dc  |r keys.a.. .a...|
000005a0  20 53 68 66 74 2c 43 74  72 6c 2c 2c 2c 2c 2c 2c  | Shft,Ctrl,,,,,,|
000005b0  2c 2c 2c 2c 2c 2c 2c 2c  0d 61 d0 1e dc 20 51 2c  |,,,,,,,,.a... Q,|
000005c0  33 2c 34 2c 35 2c 66 34  2c 38 2c 66 37 2c 2d 2c  |3,4,5,f4,8,f7,-,|
000005d0  5e 2c 4c 65 66 74 0d 61  da 1c dc 20 2c 2c 2c 2c  |^,Left.a... ,,,,|
000005e0  2c 2c 66 30 2c 57 2c 45  2c 54 2c 37 2c 49 2c 39  |,,f0,W,E,T,7,I,9|
000005f0  2c 30 0d 61 e4 14 dc 20  5f 2c 44 6f 77 6e 2c 2c  |,0.a... _,Down,,|
00000600  2c 2c 2c 2c 2c 31 0d 61  ee 18 dc 20 32 2c 44 2c  |,,,,,1.a... 2,D,|
00000610  52 2c 36 2c 55 2c 4f 2c  50 2c 5b 2c 55 70 0d 61  |R,6,U,O,P,[,Up.a|
00000620  f8 18 dc 20 2c 2c 2c 2c  2c 2c 43 61 70 73 2c 41  |... ,,,,,,Caps,A|
00000630  2c 58 2c 46 2c 59 0d 62  02 16 dc 20 4a 2c 4b 2c  |,X,F,Y.b... J,K,|
00000640  40 2c 3a 2c 52 65 74 2c  2c 2c 2c 2c 0d 62 0c 1b  |@,:,Ret,,,,,.b..|
00000650  dc 20 2c 4c 6f 63 6b 2c  53 2c 43 2c 47 2c 48 2c  |. ,Lock,S,C,G,H,|
00000660  4e 2c 4c 2c 3b 2c 5d 0d  62 16 1a dc 20 44 65 6c  |N,L,;,].b... Del|
00000670  2c 2c 2c 2c 2c 2c 2c 54  61 62 2c 5a 2c 53 70 63  |,,,,,,,Tab,Z,Spc|
00000680  65 0d 62 20 19 dc 20 56  2c 42 2c 4d 2c 27 2c 2e  |e.b .. V,B,M,',.|
00000690  2c 2f 2c 43 6f 70 79 2c  2c 2c 0d 62 2a 21 dc 20  |,/,Copy,,,.b*!. |
000006a0  2c 2c 2c 45 73 63 61 70  65 2c 66 31 2c 66 32 2c  |,,,Escape,f1,f2,|
000006b0  66 33 2c 66 35 2c 66 36  2c 66 38 0d 62 34 10 dc  |f3,f5,f6,f8.b4..|
000006c0  20 66 39 2c 5c 2c 72 67  68 74 2c 0d 65 90 05 20  | f9,\,rght,.e.. |
000006d0  0d 65 95 23 e7 20 9f 3d  31 37 20 80 20 9e 3e 34  |.e.#. .=17 . .>4|
000006e0  30 39 39 20 80 20 9e 3c  35 30 30 30 20 8c 20 8d  |099 . .<5000 . .|
000006f0  64 68 43 0d 65 9a 11 e7  20 9f 3d 31 37 20 8c 20  |dhC.e... .=17 . |
00000700  8d 40 78 69 0d 65 a4 14  f6 3a f1 22 20 61 74 20  |.@xi.e...:." at |
00000710  6c 69 6e 65 20 22 3b 9e  0d 65 ae 05 e0 0d 75 30  |line ";..e....u0|
00000720  05 20 0d 75 3a 13 dd 20  f2 69 6e 73 74 72 75 63  |. .u:.. .instruc|
00000730  74 69 6f 6e 73 0d 75 44  05 20 0d 75 4e 0e ef 31  |tions.uD. .uN..1|
00000740  39 2c 31 2c 36 3b 30 3b  0d 75 a8 05 f1 0d 75 b2  |9,1,6;0;.u....u.|
00000750  2c f1 22 20 20 20 20 20  59 6f 75 72 20 6d 69 73  |,."     Your mis|
00000760  73 69 6f 6e 20 69 73 20  74 6f 20 72 61 69 64 20  |sion is to raid |
00000770  61 6e 20 41 6c 69 65 6e  22 0d 75 bc 2c f1 22 20  |an Alien".u.,." |
00000780  20 62 61 73 65 20 73 69  74 75 61 74 65 64 20 6f  | base situated o|
00000790  6e 20 74 68 65 20 4d 6f  6f 6e 2e 20 20 48 6f 77  |n the Moon.  How|
000007a0  65 76 65 72 22 0d 75 c6  2d f1 22 20 20 74 68 65  |ever".u.-."  the|
000007b0  72 65 20 61 72 65 20 66  69 76 65 20 73 74 61 67  |re are five stag|
000007c0  65 73 20 6f 66 20 64 65  66 65 6e 63 65 73 20 74  |es of defences t|
000007d0  6f 22 0d 75 d0 2d f1 22  20 20 6e 65 67 6f 74 69  |o".u.-."  negoti|
000007e0  61 74 65 20 62 65 66 6f  72 65 20 79 6f 75 20 63  |ate before you c|
000007f0  61 6e 20 64 65 73 74 72  6f 79 20 74 68 65 22 0d  |an destroy the".|
00000800  75 da 2d f1 22 20 20 61  6c 69 65 6e 20 63 6f 6d  |u.-."  alien com|
00000810  6d 61 6e 64 20 62 61 73  65 20 61 6e 64 20 63 6f  |mand base and co|
00000820  6d 70 6c 65 74 65 20 79  6f 75 72 22 0d 75 e4 2d  |mplete your".u.-|
00000830  f1 22 20 20 66 69 72 73  74 20 6d 69 73 73 69 6f  |."  first missio|
00000840  6e 2e 20 46 75 72 74 68  65 72 20 6d 69 73 73 69  |n. Further missi|
00000850  6f 6e 73 20 77 69 6c 6c  22 0d 75 ee 21 f1 22 20  |ons will".u.!." |
00000860  20 62 65 20 65 76 65 6e  20 6d 6f 72 65 20 64 69  | be even more di|
00000870  66 66 69 63 75 6c 74 20  21 22 0d 75 f8 05 f1 0d  |fficult !".u....|
00000880  76 02 29 f1 22 20 20 20  20 59 6f 75 20 61 72 65  |v.)."    You are|
00000890  20 69 6e 20 63 6f 6d 6d  61 6e 64 20 6f 66 20 61  | in command of a|
000008a0  20 68 69 67 68 6c 79 22  0d 76 0c 28 f1 22 20 20  | highly".v.(."  |
000008b0  6d 61 6e 6f 65 75 76 72  61 62 6c 65 20 73 68 69  |manoeuvrable shi|
000008c0  70 20 65 71 75 69 70 70  65 64 20 77 69 74 68 22  |p equipped with"|
000008d0  0d 76 16 2a f1 22 20 20  61 20 72 61 70 69 64 20  |.v.*."  a rapid |
000008e0  66 69 72 65 20 6c 61 73  65 72 20 61 6e 64 20 74  |fire laser and t|
000008f0  68 65 20 6c 61 74 65 73  74 22 0d 76 20 15 f1 22  |he latest".v .."|
00000900  20 20 54 79 72 65 78 20  62 6f 6d 62 73 2e 22 0d  |  Tyrex bombs.".|
00000910  76 21 05 f1 0d 76 22 29  f1 22 20 20 20 20 59 6f  |v!...v")."    Yo|
00000920  75 20 6d 75 73 74 20 72  65 66 75 65 6c 20 62 65  |u must refuel be|
00000930  74 77 65 65 6e 20 73 74  61 67 65 73 22 0d 76 23  |tween stages".v#|
00000940  29 f1 22 20 20 62 79 20  64 6f 63 6b 69 6e 67 20  |)."  by docking |
00000950  77 69 74 68 20 74 68 65  20 53 70 61 63 65 20 54  |with the Space T|
00000960  61 6e 6b 65 72 22 0d 76  2a 05 f1 0d 76 34 25 f1  |anker".v*...v4%.|
00000970  22 20 20 20 20 59 6f 75  20 63 61 6e 20 73 6b 69  |"    You can ski|
00000980  70 20 73 74 61 67 65 73  20 6f 66 20 74 68 65 22  |p stages of the"|
00000990  0d 76 3e 23 f1 22 20 20  64 65 66 65 6e 63 65 73  |.v>#."  defences|
000009a0  20 61 6e 64 20 73 65 6c  65 63 74 20 61 20 6d 6f  | and select a mo|
000009b0  72 65 22 0d 76 48 2b f1  22 20 20 64 69 66 66 69  |re".vH+."  diffi|
000009c0  63 75 6c 74 20 6d 69 73  73 69 6f 6e 20 62 79 20  |cult mission by |
000009d0  70 72 65 73 73 69 6e 67  20 6b 65 79 73 22 0d 76  |pressing keys".v|
000009e0  52 1b f1 22 20 20 31 20  74 6f 20 35 20 61 6e 64  |R.."  1 to 5 and|
000009f0  20 41 20 74 6f 20 44 2e  22 0d 78 b4 05 f1 0d 78  | A to D.".x....x|
00000a00  d2 05 e1 0d 7d 00 15 e7  20 90 3d 26 42 30 30 20  |....}... .=&B00 |
00000a10  8c 20 d6 26 31 39 30 30  0d 7d 0a 0c 2a 4c 2e 50  |. .&1900.}..*L.P|
00000a20  49 43 54 31 0d 7d 14 0a  2a 4c 2e 42 49 54 0d 7d  |ICT1.}..*L.BIT.}|
00000a30  1e 0e 2a 4c 2e 20 43 48  41 52 53 31 0d 7d 28 0b  |..*L. CHARS1.}(.|
00000a40  2a 4c 2e 20 4d 41 50 0d  7d 32 0d 2a 2f 52 41 49  |*L. MAP.}2.*/RAI|
00000a50  44 4f 42 4a 0d ff 00 00  00 00 00 00 00 33 76 75  |DOBJ.........3vu|
00000a60  00 00 00 00 00 80 c0 c0  00 00 00 00 00 00 00 00  |................|
00000a70  00 88 00 00 00 00 00 00  11 00 00 00 00 00 22 00  |..............".|
00000a80  00 00                                             |..|
00000a82
Sam5/Moonraider/GAME1.m0
Sam5/Moonraider/GAME1.m1
Sam5/Moonraider/GAME1.m2
Sam5/Moonraider/GAME1.m4
Sam5/Moonraider/GAME1.m5