Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_51.ADF » G/PARACHU
G/PARACHU
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_User_Group » EUG_51.ADF |
Filename: | G/PARACHU |
Read OK: | ✔ |
File size: | 0C03 bytes |
Load address: | FFFF0E00 |
Exec address: | FFFF802B |
Duplicates
There are 4 duplicate copies of this file in the archive:
- AEW website » granada » granada_3_5_discs_40-Educational-Games-For-The-Electron_A-40ED.adf » G/PARACHU
- AEW website » eug » eug_3_5_discs_Eug-51_A-EUG51.adf » G/PARACHU
- AEW website » granada » granada_5_25_discs_40-Educational-Games-For-The-Electron_D-40ED.dsd » G.PARACHU
- AEW website » eug » eug_5_25_discs_Eug-51_D-EUG51.dsd » G.PARACHU
- Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_51.ADF » G/PARACHU
File contents
10REM Welcome To PARACHUTE v1.1 20REM \ v1.0 Vince Apps / 30REM \__|v1.1 (The) Dave|__/ 40REM |___________________| 50REM 60MODE6:VDU23;8202;0;0;0;19,7,0;0;:borjar%=1:*FX 4 1 70PRINTSPC(15);"PARACHUTE!"' 80PRINT'" QUICK, quick! The members of a plane crew have leapt from a damaged aeroplane and their parachutes haven't opened!" 90PRINT'"Only you can save 'em from a sticky end!"; 100PRINT'"You play by using mathematical dexterityto determine the time the plummet takes!" 110PRINT" The screen will display the HEIGHT and SPEED of each man's descent. Quickly divide the HEIGHT by the SPEED to find out how long it will take him to land!" 120PRINT'" If you answer correctly, the parachute opens, the man floats gently down to the ground and your score increases." 130PRINT'"The score awarded depends on how quickly you answer correctly and the number of tries it takes you. (Limit of three!!)"; 140OSCLI("FX 21"):VDU19,0,4;0;19,7,7;0;:REPEATUNTILGET=32 150hi%=0:VDU23,224,0,7,15,31,63,127,255,81,23,225,0,224,240,248,252,254,255,18,23,226,41,20,9,3,5,1,2,2,23,227,36,72,16,128,64,0,128,128,23,228,0,0,1,3,5,1,2,2,23,229,0,0,0,128,64,0,128,128,23,230,24,24,24,24,24,24,60,126 160MODE5:VDU23,231,0,24,60,126,255,255,126,24,23,232,0,0,0,0,8,5,7,15,23,233,0,0,0,0,16,160,224,240,23;8202;0;0;0;19,2,2;0;19,3,5;0;:lives%=3:score%=0 170REPEAT 180 CLS 190 sp%=RND(90)+9 200 ans%=RND(12) 210 height%=ans%*sp% 220 PRINTTAB(0,23)"Height:";height%;TAB(12,23)"Speed:";sp%;TAB(0,2)"Score:";score%;TAB(12,2)"Hi:";hi%;TAB(0,4)"Lives:";lives%;TAB(12,4)"Time:" 230 FORJ=0TO19 240 IFJ>6 AND J<13 THEN 260 250 COLOUR1:PRINTTAB(J,20);CHR$(231):COLOUR2:PRINTTAB(J,21);CHR$(230) 260 NEXTJ 270 *FX15,0 280 IFborjar%=1THENPROCcountdown 290 COLOUR3:PROCFALL 300UNTILlives%=0 310MODE6:VDU23;8202;0;0;0; 320CLS:PRINTTAB(0,1)"Parachute" 330PRINTTAB(0,2)"---------" 340PRINTTAB(0,4)"You scored ";score% 350IF score%>hi% THEN hi%=score%:PRINTTAB(0,7)"A new high score!!!" 360PRINTTAB(0,11)"Press a key to play again"; 370OSCLI("FX 21"):REPEAT:UNTIL GET 380GOTO160 390: 400DEFPROCFALL 410tries%=0:IN$="" 420FORy=4 TO 20 430 SOUND1,-15,y*10,2 440 PRINTTAB(9,y-1)" "TAB(9,y);CHR$(228);CHR$(229) 450 FORT=1TO80 460 GT$=INKEY$(0) 470 IF GT$="" THEN 530 480 IF GT$=CHR$(13) AND IN$<>"" THEN 630 490 IF GT$=CHR$(127) AND LEN(IN$)>0 THEN IN$=LEFT$(IN$,LEN(IN$)-1):GOTO520 500 IF GT$>"9" OR GT$<"0" THEN 530 510 IF LEN(GT$)<2 THEN IN$=IN$+GT$ 520 PRINTTAB(17,4);IN$;" " 530 NEXT 540NEXT 550PRINTTAB(9,20)" "TAB(9,21);CHR$(232) 560PRINTTAB(9,21);CHR$(232);CHR$(233) 570SOUND 0,-15,5,20:*FX201 0 580lives%=lives%-1 590FORL=1TO5000:NEXTL 600ENDPROC 610PRINTTAB(15,21)" " 620ENDPROC 630tries%=tries%+1 640IFtries%=3 THEN OSCLI("FX 201 1") 650NUM=VAL(IN$) 660IF NUM=ans% THEN 690 670IN$="" 680GOTO520 690T=80:NEXT:REM Gets out of 1st loop! 700TEMP=y:y=20:NEXT:y=TEMP 710score%=score%+(12-tries%-(2*(TEMP DIV 4))) 720FORy=y TO 20 730 PRINTTAB(9,y-2)" "TAB(9,y-1)" "TAB(9,y);CHR$(224);CHR$(225);TAB(9,y+1);CHR$(226);CHR$(227) 740FORK=1TO200:NEXT 750NEXTy 760PRINTTAB(0,11)"A successful landing" 770PRINTTAB(3,14)"Score ";12-tries%-(2*(TEMP DIV 4));" points" 780FORK=120 TO 240 STEP 10 790SOUND 1,-15,K,4 800SOUND 2,-15,K,4 810tries%=0:*FX201 0 820NEXT 830FORK=1 TO 5000:NEXTK 840PRINTTAB(10,20)" " 850PRINTTAB(10,21)" " 860tries%=0 870ENDPROC 880: 890DEFPROCcountdown:*FX201 1 900COLOUR3:FORd=5TO1 STEP -1 910 PRINTTAB(5,11)"Prepare: ";d 920 SOUND1,-15,71-(6-d*4),1 930 A$=INKEY$(25) 940NEXTd:*FX201 0 950PRINTTAB(5,11)SPC(10):VDU7 960borjar%=0:A$=INKEY$(120) 970ENDPROC
� Welcome To PARACHUTE v1.1 � \ v1.0 Vince Apps / � \__|v1.1 (The) Dave|__/ (� |___________________| 2� <1�6:�23;8202;0;0;0;19,7,0;0;:borjar%=1:*FX 4 1 F�(15);"PARACHUTE!"' P~�'" QUICK, quick! The members of a plane crew have leapt from a damaged aeroplane and their parachutes haven't opened!" Z1�'"Only you can save 'em from a sticky end!"; dX�'"You play by using mathematical dexterityto determine the time the plummet takes!" n��" The screen will display the HEIGHT and SPEED of each man's descent. Quickly divide the HEIGHT by the SPEED to find out how long it will take him to land!" x|�'" If you answer correctly, the parachute opens, the man floats gently down to the ground and your score increases." ���'"The score awarded depends on how quickly you answer correctly and the number of tries it takes you. (Limit of three!!)"; �)�("FX 21"):�19,0,4;0;19,7,7;0;:���=32 ��hi%=0:�23,224,0,7,15,31,63,127,255,81,23,225,0,224,240,248,252,254,255,18,23,226,41,20,9,3,5,1,2,2,23,227,36,72,16,128,64,0,128,128,23,228,0,0,1,3,5,1,2,2,23,229,0,0,0,128,64,0,128,128,23,230,24,24,24,24,24,24,60,126 ���5:�23,231,0,24,60,126,255,255,126,24,23,232,0,0,0,0,8,5,7,15,23,233,0,0,0,0,16,160,224,240,23;8202;0;0;0;19,2,2;0;19,3,5;0;:lives%=3:score%=0 �� � � � sp%=�(90)+9 � ans%=�(12) � height%=ans%*sp% �z �0,23)"Height:";height%;�12,23)"Speed:";sp%;�0,2)"Score:";score%;�12,2)"Hi:";hi%;�0,4)"Lives:";lives%;�12,4)"Time:" � �J=0�19 � �J>6 � J<13 � �TDA �+ �1:�J,20);�(231):�2:�J,21);�(230) �J *FX15,0 �borjar%=1��countdown " �3:�FALL , �lives%=0 6�6:�23;8202;0;0;0; @�:�0,1)"Parachute" J�0,2)"---------" T�0,4)"You scored ";score% ^9� score%>hi% � hi%=score%:�0,7)"A new high score!!!" h'�0,11)"Press a key to play again"; r�("FX 21"):�:� � | �t`@ �: � ��FALL �tries%=0:IN$="" � �y=4 � 20 � �1,-15,y*10,2 �% �9,y-1)" "�9,y);�(228);�(229) � �T=1�80 � GT$=�(0) � � GT$="" � �TRB �& � GT$=�(13) � IN$<>"" � �DvB �< � GT$=�(127) � �(IN$)>0 � IN$=�IN$,�(IN$)-1):�THB �$ � GT$>"9" � GT$<"0" � �TRB �" � �(GT$)<2 � IN$=IN$+GT$ �17,4);IN$;" " � � &�9,20)" "�9,21);�(232) 0�9,21);�(232);�(233) :� 0,-15,5,20:*FX201 0 Dlives%=lives%-1 N�L=1�5000:�L X� b�15,21)" " l� vtries%=tries%+1 ��tries%=3 � �("FX 201 1") �NUM=�(IN$) �� NUM=ans% � �trB � IN$="" � �THB �"T=80:�:� Gets out of 1st loop! �TEMP=y:y=20:�:y=TEMP �,score%=score%+(12-tries%-(2*(TEMP � 4))) � �y=y � 20 �F �9,y-2)" "�9,y-1)" "�9,y);�(224);�(225);�9,y+1);�(226);�(227) ��K=1�200:� ��y �!�0,11)"A successful landing" 6�3,14)"Score ";12-tries%-(2*(TEMP � 4));" points" �K=120 � 240 � 10 � 1,-15,K,4 � 2,-15,K,4 *tries%=0:*FX201 0 4� >�K=1 � 5000:�K H�10,20)" " R�10,21)" " \tries%=0 f� p: z��countdown:*FX201 1 ��3:�d=5�1 � -1 � �5,11)"Prepare: ";d � �1,-15,71-(6-d*4),1 � A$=�(25) ��d:*FX201 0 ��5,11)�(10):�7 �borjar%=0:A$=�(120) �� �
00000000 0d 00 0a 1f f4 20 57 65 6c 63 6f 6d 65 20 54 6f |..... Welcome To| 00000010 20 50 41 52 41 43 48 55 54 45 20 76 31 2e 31 0d | PARACHUTE v1.1.| 00000020 00 14 1f f4 20 5c 20 20 20 20 76 31 2e 30 20 56 |.... \ v1.0 V| 00000030 69 6e 63 65 20 41 70 70 73 20 20 20 20 2f 0d 00 |ince Apps /..| 00000040 1e 1e f4 20 20 5c 5f 5f 7c 76 31 2e 31 20 28 54 |... \__|v1.1 (T| 00000050 68 65 29 20 44 61 76 65 7c 5f 5f 2f 0d 00 28 1d |he) Dave|__/..(.| 00000060 f4 20 20 20 7c 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f 5f |. |___________| 00000070 5f 5f 5f 5f 5f 5f 5f 5f 7c 0d 00 32 05 f4 0d 00 |________|..2....| 00000080 3c 31 eb 36 3a ef 32 33 3b 38 32 30 32 3b 30 3b |<1.6:.23;8202;0;| 00000090 30 3b 30 3b 31 39 2c 37 2c 30 3b 30 3b 3a 62 6f |0;0;19,7,0;0;:bo| 000000a0 72 6a 61 72 25 3d 31 3a 2a 46 58 20 34 20 31 0d |rjar%=1:*FX 4 1.| 000000b0 00 46 18 f1 89 28 31 35 29 3b 22 50 41 52 41 43 |.F...(15);"PARAC| 000000c0 48 55 54 45 21 22 27 0d 00 50 7e f1 27 22 20 20 |HUTE!"'..P~.'" | 000000d0 51 55 49 43 4b 2c 20 71 75 69 63 6b 21 20 54 68 |QUICK, quick! Th| 000000e0 65 20 6d 65 6d 62 65 72 73 20 6f 66 20 61 20 70 |e members of a p| 000000f0 6c 61 6e 65 20 20 63 72 65 77 20 68 61 76 65 20 |lane crew have | 00000100 6c 65 61 70 74 20 66 72 6f 6d 20 61 20 64 61 6d |leapt from a dam| 00000110 61 67 65 64 20 61 65 72 6f 70 6c 61 6e 65 20 20 |aged aeroplane | 00000120 61 6e 64 20 74 68 65 69 72 20 70 61 72 61 63 68 |and their parach| 00000130 75 74 65 73 20 68 61 76 65 6e 27 74 20 6f 70 65 |utes haven't ope| 00000140 6e 65 64 21 22 0d 00 5a 31 f1 27 22 4f 6e 6c 79 |ned!"..Z1.'"Only| 00000150 20 79 6f 75 20 63 61 6e 20 73 61 76 65 20 27 65 | you can save 'e| 00000160 6d 20 66 72 6f 6d 20 61 20 73 74 69 63 6b 79 20 |m from a sticky | 00000170 65 6e 64 21 22 3b 0d 00 64 58 f1 27 22 59 6f 75 |end!";..dX.'"You| 00000180 20 70 6c 61 79 20 62 79 20 75 73 69 6e 67 20 6d | play by using m| 00000190 61 74 68 65 6d 61 74 69 63 61 6c 20 64 65 78 74 |athematical dext| 000001a0 65 72 69 74 79 74 6f 20 64 65 74 65 72 6d 69 6e |erityto determin| 000001b0 65 20 74 68 65 20 74 69 6d 65 20 74 68 65 20 70 |e the time the p| 000001c0 6c 75 6d 6d 65 74 20 74 61 6b 65 73 21 22 0d 00 |lummet takes!"..| 000001d0 6e a6 f1 22 20 54 68 65 20 73 63 72 65 65 6e 20 |n.." The screen | 000001e0 77 69 6c 6c 20 64 69 73 70 6c 61 79 20 74 68 65 |will display the| 000001f0 20 48 45 49 47 48 54 20 61 6e 64 20 20 20 53 50 | HEIGHT and SP| 00000200 45 45 44 20 6f 66 20 65 61 63 68 20 6d 61 6e 27 |EED of each man'| 00000210 73 20 64 65 73 63 65 6e 74 2e 20 51 75 69 63 6b |s descent. Quick| 00000220 6c 79 20 20 20 64 69 76 69 64 65 20 74 68 65 20 |ly divide the | 00000230 48 45 49 47 48 54 20 62 79 20 74 68 65 20 53 50 |HEIGHT by the SP| 00000240 45 45 44 20 74 6f 20 66 69 6e 64 20 20 6f 75 74 |EED to find out| 00000250 20 68 6f 77 20 6c 6f 6e 67 20 69 74 20 77 69 6c | how long it wil| 00000260 6c 20 74 61 6b 65 20 68 69 6d 20 74 6f 20 6c 61 |l take him to la| 00000270 6e 64 21 22 0d 00 78 7c f1 27 22 20 49 66 20 79 |nd!"..x|.'" If y| 00000280 6f 75 20 61 6e 73 77 65 72 20 63 6f 72 72 65 63 |ou answer correc| 00000290 74 6c 79 2c 20 74 68 65 20 70 61 72 61 63 68 75 |tly, the parachu| 000002a0 74 65 20 6f 70 65 6e 73 2c 20 74 68 65 20 6d 61 |te opens, the ma| 000002b0 6e 20 66 6c 6f 61 74 73 20 67 65 6e 74 6c 79 20 |n floats gently | 000002c0 64 6f 77 6e 20 74 6f 20 74 68 65 20 20 20 20 67 |down to the g| 000002d0 72 6f 75 6e 64 20 61 6e 64 20 79 6f 75 72 20 73 |round and your s| 000002e0 63 6f 72 65 20 69 6e 63 72 65 61 73 65 73 2e 22 |core increases."| 000002f0 0d 00 82 80 f1 27 22 54 68 65 20 73 63 6f 72 65 |.....'"The score| 00000300 20 61 77 61 72 64 65 64 20 64 65 70 65 6e 64 73 | awarded depends| 00000310 20 6f 6e 20 68 6f 77 20 71 75 69 63 6b 6c 79 20 | on how quickly | 00000320 79 6f 75 20 61 6e 73 77 65 72 20 63 6f 72 72 65 |you answer corre| 00000330 63 74 6c 79 20 61 6e 64 20 74 68 65 20 6e 75 6d |ctly and the num| 00000340 62 65 72 20 6f 66 20 20 74 72 69 65 73 20 69 74 |ber of tries it| 00000350 20 74 61 6b 65 73 20 79 6f 75 2e 20 28 4c 69 6d | takes you. (Lim| 00000360 69 74 20 6f 66 20 74 68 72 65 65 21 21 29 22 3b |it of three!!)";| 00000370 0d 00 8c 29 ff 28 22 46 58 20 32 31 22 29 3a ef |...).("FX 21"):.| 00000380 31 39 2c 30 2c 34 3b 30 3b 31 39 2c 37 2c 37 3b |19,0,4;0;19,7,7;| 00000390 30 3b 3a f5 fd a5 3d 33 32 0d 00 96 dc 68 69 25 |0;:...=32....hi%| 000003a0 3d 30 3a ef 32 33 2c 32 32 34 2c 30 2c 37 2c 31 |=0:.23,224,0,7,1| 000003b0 35 2c 33 31 2c 36 33 2c 31 32 37 2c 32 35 35 2c |5,31,63,127,255,| 000003c0 38 31 2c 32 33 2c 32 32 35 2c 30 2c 32 32 34 2c |81,23,225,0,224,| 000003d0 32 34 30 2c 32 34 38 2c 32 35 32 2c 32 35 34 2c |240,248,252,254,| 000003e0 32 35 35 2c 31 38 2c 32 33 2c 32 32 36 2c 34 31 |255,18,23,226,41| 000003f0 2c 32 30 2c 39 2c 33 2c 35 2c 31 2c 32 2c 32 2c |,20,9,3,5,1,2,2,| 00000400 32 33 2c 32 32 37 2c 33 36 2c 37 32 2c 31 36 2c |23,227,36,72,16,| 00000410 31 32 38 2c 36 34 2c 30 2c 31 32 38 2c 31 32 38 |128,64,0,128,128| 00000420 2c 32 33 2c 32 32 38 2c 30 2c 30 2c 31 2c 33 2c |,23,228,0,0,1,3,| 00000430 35 2c 31 2c 32 2c 32 2c 32 33 2c 32 32 39 2c 30 |5,1,2,2,23,229,0| 00000440 2c 30 2c 30 2c 31 32 38 2c 36 34 2c 30 2c 31 32 |,0,0,128,64,0,12| 00000450 38 2c 31 32 38 2c 32 33 2c 32 33 30 2c 32 34 2c |8,128,23,230,24,| 00000460 32 34 2c 32 34 2c 32 34 2c 32 34 2c 32 34 2c 36 |24,24,24,24,24,6| 00000470 30 2c 31 32 36 0d 00 a0 92 eb 35 3a ef 32 33 2c |0,126.....5:.23,| 00000480 32 33 31 2c 30 2c 32 34 2c 36 30 2c 31 32 36 2c |231,0,24,60,126,| 00000490 32 35 35 2c 32 35 35 2c 31 32 36 2c 32 34 2c 32 |255,255,126,24,2| 000004a0 33 2c 32 33 32 2c 30 2c 30 2c 30 2c 30 2c 38 2c |3,232,0,0,0,0,8,| 000004b0 35 2c 37 2c 31 35 2c 32 33 2c 32 33 33 2c 30 2c |5,7,15,23,233,0,| 000004c0 30 2c 30 2c 30 2c 31 36 2c 31 36 30 2c 32 32 34 |0,0,0,16,160,224| 000004d0 2c 32 34 30 2c 32 33 3b 38 32 30 32 3b 30 3b 30 |,240,23;8202;0;0| 000004e0 3b 30 3b 31 39 2c 32 2c 32 3b 30 3b 31 39 2c 33 |;0;19,2,2;0;19,3| 000004f0 2c 35 3b 30 3b 3a 6c 69 76 65 73 25 3d 33 3a 73 |,5;0;:lives%=3:s| 00000500 63 6f 72 65 25 3d 30 0d 00 aa 05 f5 0d 00 b4 07 |core%=0.........| 00000510 20 20 db 0d 00 be 11 20 20 73 70 25 3d b3 28 39 | ..... sp%=.(9| 00000520 30 29 2b 39 0d 00 c8 10 20 20 61 6e 73 25 3d b3 |0)+9.... ans%=.| 00000530 28 31 32 29 0d 00 d2 16 20 20 68 65 69 67 68 74 |(12).... height| 00000540 25 3d 61 6e 73 25 2a 73 70 25 0d 00 dc 7a 20 20 |%=ans%*sp%...z | 00000550 f1 8a 30 2c 32 33 29 22 48 65 69 67 68 74 3a 22 |..0,23)"Height:"| 00000560 3b 68 65 69 67 68 74 25 3b 8a 31 32 2c 32 33 29 |;height%;.12,23)| 00000570 22 53 70 65 65 64 3a 22 3b 73 70 25 3b 8a 30 2c |"Speed:";sp%;.0,| 00000580 32 29 22 53 63 6f 72 65 3a 22 3b 73 63 6f 72 65 |2)"Score:";score| 00000590 25 3b 8a 31 32 2c 32 29 22 48 69 3a 22 3b 68 69 |%;.12,2)"Hi:";hi| 000005a0 25 3b 8a 30 2c 34 29 22 4c 69 76 65 73 3a 22 3b |%;.0,4)"Lives:";| 000005b0 6c 69 76 65 73 25 3b 8a 31 32 2c 34 29 22 54 69 |lives%;.12,4)"Ti| 000005c0 6d 65 3a 22 0d 00 e6 0d 20 20 e3 4a 3d 30 b8 31 |me:".... .J=0.1| 000005d0 39 0d 00 f0 1a 20 20 20 20 e7 4a 3e 36 20 80 20 |9.... .J>6 . | 000005e0 4a 3c 31 33 20 8c 20 8d 54 44 41 0d 00 fa 2b 20 |J<13 . .TDA...+ | 000005f0 20 20 20 fb 31 3a f1 8a 4a 2c 32 30 29 3b bd 28 | .1:..J,20);.(| 00000600 32 33 31 29 3a fb 32 3a f1 8a 4a 2c 32 31 29 3b |231):.2:..J,21);| 00000610 bd 28 32 33 30 29 0d 01 04 08 20 20 ed 4a 0d 01 |.(230).... .J..| 00000620 0e 0d 20 20 2a 46 58 31 35 2c 30 0d 01 18 1b 20 |.. *FX15,0.... | 00000630 20 e7 62 6f 72 6a 61 72 25 3d 31 8c f2 63 6f 75 | .borjar%=1..cou| 00000640 6e 74 64 6f 77 6e 0d 01 22 0e 20 20 fb 33 3a f2 |ntdown..". .3:.| 00000650 46 41 4c 4c 0d 01 2c 0d fd 6c 69 76 65 73 25 3d |FALL..,..lives%=| 00000660 30 0d 01 36 16 eb 36 3a ef 32 33 3b 38 32 30 32 |0..6..6:.23;8202| 00000670 3b 30 3b 30 3b 30 3b 0d 01 40 17 db 3a f1 8a 30 |;0;0;0;..@..:..0| 00000680 2c 31 29 22 50 61 72 61 63 68 75 74 65 22 0d 01 |,1)"Parachute"..| 00000690 4a 15 f1 8a 30 2c 32 29 22 2d 2d 2d 2d 2d 2d 2d |J...0,2)"-------| 000006a0 2d 2d 22 0d 01 54 1e f1 8a 30 2c 34 29 22 59 6f |--"..T...0,4)"Yo| 000006b0 75 20 73 63 6f 72 65 64 20 22 3b 73 63 6f 72 65 |u scored ";score| 000006c0 25 0d 01 5e 39 e7 20 73 63 6f 72 65 25 3e 68 69 |%..^9. score%>hi| 000006d0 25 20 8c 20 68 69 25 3d 73 63 6f 72 65 25 3a f1 |% . hi%=score%:.| 000006e0 8a 30 2c 37 29 22 41 20 6e 65 77 20 68 69 67 68 |.0,7)"A new high| 000006f0 20 73 63 6f 72 65 21 21 21 22 0d 01 68 27 f1 8a | score!!!"..h'..| 00000700 30 2c 31 31 29 22 50 72 65 73 73 20 61 20 6b 65 |0,11)"Press a ke| 00000710 79 20 74 6f 20 70 6c 61 79 20 61 67 61 69 6e 22 |y to play again"| 00000720 3b 0d 01 72 14 ff 28 22 46 58 20 32 31 22 29 3a |;..r..("FX 21"):| 00000730 f5 3a fd 20 a5 0d 01 7c 09 e5 8d 74 60 40 0d 01 |.:. ...|...t`@..| 00000740 86 05 3a 0d 01 90 0a dd f2 46 41 4c 4c 0d 01 9a |..:......FALL...| 00000750 13 74 72 69 65 73 25 3d 30 3a 49 4e 24 3d 22 22 |.tries%=0:IN$=""| 00000760 0d 01 a4 0d e3 79 3d 34 20 b8 20 32 30 0d 01 ae |.....y=4 . 20...| 00000770 13 20 20 d4 31 2c 2d 31 35 2c 79 2a 31 30 2c 32 |. .1,-15,y*10,2| 00000780 0d 01 b8 25 20 20 f1 8a 39 2c 79 2d 31 29 22 20 |...% ..9,y-1)" | 00000790 20 22 8a 39 2c 79 29 3b bd 28 32 32 38 29 3b bd | ".9,y);.(228);.| 000007a0 28 32 32 39 29 0d 01 c2 0f 20 20 20 20 e3 54 3d |(229).... .T=| 000007b0 31 b8 38 30 0d 01 cc 12 20 20 20 20 20 20 47 54 |1.80.... GT| 000007c0 24 3d bf 28 30 29 0d 01 d6 19 20 20 20 20 20 20 |$=.(0).... | 000007d0 e7 20 47 54 24 3d 22 22 20 8c 20 8d 54 52 42 0d |. GT$="" . .TRB.| 000007e0 01 e0 26 20 20 20 20 20 20 e7 20 47 54 24 3d bd |..& . GT$=.| 000007f0 28 31 33 29 20 80 20 49 4e 24 3c 3e 22 22 20 8c |(13) . IN$<>"" .| 00000800 20 8d 44 76 42 0d 01 ea 3c 20 20 20 20 20 20 e7 | .DvB...< .| 00000810 20 47 54 24 3d bd 28 31 32 37 29 20 80 20 a9 28 | GT$=.(127) . .(| 00000820 49 4e 24 29 3e 30 20 8c 20 49 4e 24 3d c0 49 4e |IN$)>0 . IN$=.IN| 00000830 24 2c a9 28 49 4e 24 29 2d 31 29 3a e5 8d 54 48 |$,.(IN$)-1):..TH| 00000840 42 0d 01 f4 24 20 20 20 20 20 20 e7 20 47 54 24 |B...$ . GT$| 00000850 3e 22 39 22 20 84 20 47 54 24 3c 22 30 22 20 8c |>"9" . GT$<"0" .| 00000860 20 8d 54 52 42 0d 01 fe 22 20 20 20 20 20 20 e7 | .TRB..." .| 00000870 20 a9 28 47 54 24 29 3c 32 20 8c 20 49 4e 24 3d | .(GT$)<2 . IN$=| 00000880 49 4e 24 2b 47 54 24 0d 02 08 1a 20 20 20 20 20 |IN$+GT$.... | 00000890 20 f1 8a 31 37 2c 34 29 3b 49 4e 24 3b 22 20 20 | ..17,4);IN$;" | 000008a0 22 0d 02 12 09 20 20 20 20 ed 0d 02 1c 05 ed 0d |".... .......| 000008b0 02 26 1c f1 8a 39 2c 32 30 29 22 20 20 22 8a 39 |.&...9,20)" ".9| 000008c0 2c 32 31 29 3b bd 28 32 33 32 29 0d 02 30 19 f1 |,21);.(232)..0..| 000008d0 8a 39 2c 32 31 29 3b bd 28 32 33 32 29 3b bd 28 |.9,21);.(232);.(| 000008e0 32 33 33 29 0d 02 3a 19 d4 20 30 2c 2d 31 35 2c |233)..:.. 0,-15,| 000008f0 35 2c 32 30 3a 2a 46 58 32 30 31 20 30 0d 02 44 |5,20:*FX201 0..D| 00000900 13 6c 69 76 65 73 25 3d 6c 69 76 65 73 25 2d 31 |.lives%=lives%-1| 00000910 0d 02 4e 10 e3 4c 3d 31 b8 35 30 30 30 3a ed 4c |..N..L=1.5000:.L| 00000920 0d 02 58 05 e1 0d 02 62 0f f1 8a 31 35 2c 32 31 |..X....b...15,21| 00000930 29 22 20 22 0d 02 6c 05 e1 0d 02 76 13 74 72 69 |)" "..l....v.tri| 00000940 65 73 25 3d 74 72 69 65 73 25 2b 31 0d 02 80 1d |es%=tries%+1....| 00000950 e7 74 72 69 65 73 25 3d 33 20 8c 20 ff 28 22 46 |.tries%=3 . .("F| 00000960 58 20 32 30 31 20 31 22 29 0d 02 8a 0e 4e 55 4d |X 201 1")....NUM| 00000970 3d bb 28 49 4e 24 29 0d 02 94 15 e7 20 4e 55 4d |=.(IN$)..... NUM| 00000980 3d 61 6e 73 25 20 8c 20 8d 74 72 42 0d 02 9e 0a |=ans% . .trB....| 00000990 49 4e 24 3d 22 22 0d 02 a8 09 e5 8d 54 48 42 0d |IN$=""......THB.| 000009a0 02 b2 22 54 3d 38 30 3a ed 3a f4 20 47 65 74 73 |.."T=80:.:. Gets| 000009b0 20 6f 75 74 20 6f 66 20 31 73 74 20 6c 6f 6f 70 | out of 1st loop| 000009c0 21 0d 02 bc 18 54 45 4d 50 3d 79 3a 79 3d 32 30 |!....TEMP=y:y=20| 000009d0 3a ed 3a 79 3d 54 45 4d 50 0d 02 c6 2c 73 63 6f |:.:y=TEMP...,sco| 000009e0 72 65 25 3d 73 63 6f 72 65 25 2b 28 31 32 2d 74 |re%=score%+(12-t| 000009f0 72 69 65 73 25 2d 28 32 2a 28 54 45 4d 50 20 81 |ries%-(2*(TEMP .| 00000a00 20 34 29 29 29 0d 02 d0 0d e3 79 3d 79 20 b8 20 | 4))).....y=y . | 00000a10 32 30 0d 02 da 46 20 20 f1 8a 39 2c 79 2d 32 29 |20...F ..9,y-2)| 00000a20 22 20 20 22 8a 39 2c 79 2d 31 29 22 20 20 22 8a |" ".9,y-1)" ".| 00000a30 39 2c 79 29 3b bd 28 32 32 34 29 3b bd 28 32 32 |9,y);.(224);.(22| 00000a40 35 29 3b 8a 39 2c 79 2b 31 29 3b bd 28 32 32 36 |5);.9,y+1);.(226| 00000a50 29 3b bd 28 32 32 37 29 0d 02 e4 0e e3 4b 3d 31 |);.(227).....K=1| 00000a60 b8 32 30 30 3a ed 0d 02 ee 06 ed 79 0d 02 f8 21 |.200:......y...!| 00000a70 f1 8a 30 2c 31 31 29 22 41 20 73 75 63 63 65 73 |..0,11)"A succes| 00000a80 73 66 75 6c 20 6c 61 6e 64 69 6e 67 22 0d 03 02 |sful landing"...| 00000a90 36 f1 8a 33 2c 31 34 29 22 53 63 6f 72 65 20 22 |6..3,14)"Score "| 00000aa0 3b 31 32 2d 74 72 69 65 73 25 2d 28 32 2a 28 54 |;12-tries%-(2*(T| 00000ab0 45 4d 50 20 81 20 34 29 29 3b 22 20 70 6f 69 6e |EMP . 4));" poin| 00000ac0 74 73 22 0d 03 0c 15 e3 4b 3d 31 32 30 20 b8 20 |ts".....K=120 . | 00000ad0 32 34 30 20 88 20 31 30 0d 03 16 0f d4 20 31 2c |240 . 10..... 1,| 00000ae0 2d 31 35 2c 4b 2c 34 0d 03 20 0f d4 20 32 2c 2d |-15,K,4.. .. 2,-| 00000af0 31 35 2c 4b 2c 34 0d 03 2a 15 74 72 69 65 73 25 |15,K,4..*.tries%| 00000b00 3d 30 3a 2a 46 58 32 30 31 20 30 0d 03 34 05 ed |=0:*FX201 0..4..| 00000b10 0d 03 3e 12 e3 4b 3d 31 20 b8 20 35 30 30 30 3a |..>..K=1 . 5000:| 00000b20 ed 4b 0d 03 48 10 f1 8a 31 30 2c 32 30 29 22 20 |.K..H...10,20)" | 00000b30 20 22 0d 03 52 10 f1 8a 31 30 2c 32 31 29 22 20 | "..R...10,21)" | 00000b40 20 22 0d 03 5c 0c 74 72 69 65 73 25 3d 30 0d 03 | "..\.tries%=0..| 00000b50 66 05 e1 0d 03 70 05 3a 0d 03 7a 18 dd f2 63 6f |f....p.:..z...co| 00000b60 75 6e 74 64 6f 77 6e 3a 2a 46 58 32 30 31 20 31 |untdown:*FX201 1| 00000b70 0d 03 84 12 fb 33 3a e3 64 3d 35 b8 31 20 88 20 |.....3:.d=5.1 . | 00000b80 2d 31 0d 03 8e 1a 20 20 f1 8a 35 2c 31 31 29 22 |-1.... ..5,11)"| 00000b90 50 72 65 70 61 72 65 3a 20 22 3b 64 0d 03 98 19 |Prepare: ";d....| 00000ba0 20 20 d4 31 2c 2d 31 35 2c 37 31 2d 28 36 2d 64 | .1,-15,71-(6-d| 00000bb0 2a 34 29 2c 31 0d 03 a2 0e 20 20 41 24 3d bf 28 |*4),1.... A$=.(| 00000bc0 32 35 29 0d 03 ac 0f ed 64 3a 2a 46 58 32 30 31 |25).....d:*FX201| 00000bd0 20 30 0d 03 b6 13 f1 8a 35 2c 31 31 29 89 28 31 | 0......5,11).(1| 00000be0 30 29 3a ef 37 0d 03 c0 17 62 6f 72 6a 61 72 25 |0):.7....borjar%| 00000bf0 3d 30 3a 41 24 3d bf 28 31 32 30 29 0d 03 ca 05 |=0:A$=.(120)....| 00000c00 e1 0d ff |...| 00000c03