home *** CD-ROM | disk | FTP | other *** search
/ CD Action 2 / CD_Action_2.iso / alien / readme.txt < prev    next >
Text File  |  1995-10-08  |  6KB  |  165 lines

  1.                                
  2.                              ALIEN ODYSSEY DEMO
  3.                                 
  4. BACKGROUND
  5. ----------
  6. The player assumes the role of Planetary Surveyor, Psaph Abal, whose ship
  7. crash-lands on an uncharted planet.  He quickly befriends one of the planet's 
  8. Yuma natives, Gaan Ta'Tukinae, and is taken back to his village.  The village 
  9. chief, Hoeda Un'Tukinae, reveals their plight - they have all but lost an age-
  10. old war to a malicious cybernetic race known as the Dak, once of the same 
  11. species, but who split away and developed superior technologies in a bid to 
  12. conquer other worlds.  This enclave is all that remains of the Yuma.  Psaph's 
  13. arrival here gives the Yuma one last glimmer of hope.  
  14.   
  15. Psaph has two main objectives:  to rid the planet of this scourge, and to 
  16. find space-worthy transport so that he can return to his mothership.  To 
  17. fulfil them both he must enter each of the Dak bases, discover their secrets, 
  18. battle with the enemies within, and ultimately, find a way to cause each base 
  19. to self-destruct.
  20.  
  21.  
  22. DEMO VERSION
  23. ------------
  24. In this demo you take control of Psaph who can explore the first two floors of 
  25. the first Dak base known as the Comms Bunker.  The following keys are used to 
  26. control his movements:
  27.  
  28. 1                 - (Un)holster gun
  29. Ctrl              - Fire gun
  30. Shift             - Run mode
  31. Alt               - Side-step mode
  32. Alt & Shift       - Emergency side-roll mode
  33. Z                 - Crouch mode
  34. X                 - Jump forward
  35. Cursor Up         - Move forward
  36. Cursor Down       - Move backward
  37. Cursor Left/Right - Rotate/move sideways
  38. Spacebar          - Activate terminals and elevators
  39.  
  40.  
  41. FINAL RELEASE FEATURES
  42. ----------------------
  43. * Two full bases to explore totalling over 120 rooms.
  44. * Extensive scenery animation brings each base to life.
  45. * Interlinking sections have the player flying through a forest and down dark 
  46.   mineshafts at breakneck speeds.
  47. * Multiple gun upgrades.
  48. * 9 different Dak enemy types.
  49. * Full game and mission intro and outro sequences.
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. This is a HOW TO Guide to making a boot disk.
  57. =============================================
  58.  
  59. If you are trying to run Alien Odyssey on a machine with 8 meg of 
  60. ram then you will need to ensure that as much of that 8 meg as
  61. possible is available to the game. For this reason you will need 
  62. to make a BOOT disk. That is, a disk that will allow you to boot 
  63. your machine with a minimum of memory used.
  64.  
  65. There now follows a step by step guide to making a boot disk, but 
  66. please note that this is an example of how to do it. In general 
  67. the setup of different PC's varies and your own setup is liable 
  68. to look rather different, e.g. the pathnames used in your PATH 
  69. statement, or where to find files or the installed directory of a 
  70. certain driver.
  71.  
  72. Step 1:
  73. Place a diskette in your A: drive.  The next step will destroy any 
  74. data on the disk, so a brand new blank floppy disk should be used.  
  75. Make sure that the disk is the same density as the drive (Use a 
  76. 1.44 MB disk in a High Density 3.5" drive, etc.).
  77.  
  78. Step 2:
  79. At the C: prompt, type FORMAT A: /S and press [ENTER].  The DOS 
  80. Format utility will format the disk and add the necessary DOS 
  81. files required to boot from the floppy disk.
  82.  
  83. Step 3:
  84. Change to drive A by typing A: and pressing [ENTER].  Then type 
  85. EDIT CONFIG.SYS and press [ENTER].  The DOS Edit program will 
  86. appear.
  87.  
  88. Type in the lines following [CONFIG.SYS] in the example below.
  89. When you have finished typing the lines, press ALT-F to bring up 
  90. the File menu, and then press X to Exit the DOS Edit program.  
  91. When it asks you if you want to save your file, choose Yes:
  92.  
  93. [CONFIG.SYS]
  94. DEVICE=C:\DOS\HIMEM.SYS
  95. DEVICE=C:\DOS\EMM386.EXE NOEMS
  96. DOS=UMB
  97. FILES=40
  98. BUFFERS=15,0
  99. STACKS=9,256
  100. DOS=HIGH
  101. DEVICEHIGH=C:\CDROMDRV\D011V109.SYS /D:MSCD000
  102.  
  103. In the CONFIG.SYS file shown above, replace the last line in the 
  104. example with the line from your current CONFIG.SYS file on drive 
  105. C: that runs your CD-ROM drivers.  It is important that you use 
  106. your CD-ROM line and not our example, otherwise your CD-ROM drive 
  107. will not function properly.  
  108.  
  109. You may also have special lines in your C:\CONFIG.SYS file that 
  110. help your sound card to function properly.  It is very important 
  111. that you copy those lines into this new file on A: so your sound 
  112. card will work.  Place the appropriate lines from your CONFIG.SYS 
  113. file at the end of the example shown above.
  114.  
  115. Step 4:
  116. Type EDIT AUTOEXEC.BAT and press [ENTER].  The DOS Edit program 
  117. will appear. Type in the lines following [AUTOEXEC.BAT] in the 
  118. example below.  When you are finished typing the lines, press 
  119. ALT-F to bring up the File menu, and then press X to Exit the DOS 
  120. Edit program.  When it asks you if you want to save your file, 
  121. choose Yes:
  122.  
  123. [AUTOEXEC.BAT]
  124. @ECHO OFF
  125. PROMPT $P$G
  126. SET PATH=C:\DOS;C:\VIDCARD;C:\SNDCARD
  127. LH C:\DOS\MSCDEX.EXE /D:MSCD000
  128. SET SOUND=C:\SBPRO
  129. SET BLASTER=A220 I7 D1 T4
  130. C:\MOUSE\MOUSE.EXE
  131. C:
  132. CD\ODYSSEY
  133. GAME
  134.  
  135. In the AUTOEXEC.BAT file shown above, you would replace line 4 
  136. with the line from your current AUTOEXEC.BAT file on drive C: that 
  137. loads your CD-ROM drivers.  It is important that you use your CD-
  138. ROM line and not our example, otherwise your CD-ROM drive will not 
  139. function properly.
  140.  
  141. You may also have special lines in your C:\AUTOEXEC.BAT file that 
  142. help your sound card to function properly.  It is very important 
  143. that you copy those lines into this new file on A: so your sound 
  144. card will work.  Replace the examples on lines 5 and 6 with the 
  145. appropriate lines from your AUTOEXEC.BAT file.
  146.  
  147. Additionally, if your graphics card requires a VESA driver it 
  148. should go here as well.
  149.  
  150. Step 5:
  151. Reboot your system with the boot disk still in drive A. The game 
  152. should start and everything should be working properly.  
  153.  
  154. NOTE:  Once this boot disk is finished and functioning properly,
  155.        and if you still do not have enough memory free, use it
  156.        to boot up your system and then run the DOS MEMMAKER
  157.        utility with the boot disk in the drive.  MEMMAKER will
  158.        ensure that you have squeezed every little bit of RAM out
  159.        of the boot disk.  Run the DOS command MEM before and after
  160.        running MEMMAKER to see what kind of memory increase you
  161.        get from this step.
  162.  
  163.  
  164. 
  165.