home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 3.10 / 1998-01_Disc_3.10.iso / CHASM / INSTALL.FIL < prev    next >
Text File  |  1997-08-08  |  4KB  |  151 lines

  1. '****** CHASM (demo) INSTALL
  2.  
  3. SHELL 
  4. "~0\picem.exe /w:300 chsm_spl.pcx"
  5.  
  6. BACKGROUND 0    ' 63 display cyan colored background (see color chart in docs)
  7.  
  8. LANGUAGE ENGLISH
  9.  
  10. BORDER 1            ' 1 = single line borders. 2 = double, 0 = no border
  11.  
  12. TELESCOPE OFF       ' turn off "exploding" or telescoping windows
  13.                     ' this will make the window instantly appear
  14. SHADOW ON
  15.  
  16. '***************************************************************************
  17. WINOPEN 18 2 95     
  18. "    CHASM - The Rift - 3 Mission Demo    "
  19. "                                         "
  20. ""
  21. ""
  22.  
  23. PAUSE 100
  24. WINUPDATE +4 +4 94
  25. "Distributed By GT Interactive Software"  ' 94 yellow text, 14 characters across, 3 rows 
  26.                                ' down from the upper left hand corner of window.
  27. PAUSE 50                  ' 1/2 second delay between words
  28. WINUPDATE +16 +5 95
  29. " Version 1.0 "
  30.  
  31. PAUSE 200                 ' 2 second delay
  32.  
  33. TELESCOPE ON       
  34.  
  35. '*************************************************************************** 
  36. '  Prompt for the drive to install to:
  37. :INSTALL_NOW
  38.  
  39. WINOPEN 9 2 95     
  40. "         Thanks for trying CHASM - The Rift DEMO        " 
  41. "                                                        "
  42. ""
  43. "          (c) Megamedia Corp, Action Forms LTD.         "
  44. PAUSE 200
  45.  
  46. SHADOW OFF
  47.  
  48. WINOPEN 10 20 31
  49. ""
  50. " Please enter the letter of the DRIVE where you would "
  51. " like to copy the CHASM DEMO. "
  52. ""
  53. DRIVE C 28 11 31 15 29 14 79
  54.  
  55. WINCLOSE
  56.  
  57. WINOPEN 29 11 95
  58. "   Unpacking files ..............   "
  59.  
  60. UNPACK chasm.pak 34 15 112 34 15 79
  61.  
  62. MD ~1\chasm-sw
  63.  
  64. COPY ~1\legal.txt    ~1\chasm-sw\ 34 15 112
  65. JUMP.FAIL FILE_CREATION_ERROR
  66. COPY ~1\rtm.exe      ~1\chasm-sw\ 34 15 112
  67. JUMP.FAIL FILE_CREATION_ERROR
  68. COPY ~1\chasm.def    ~1\chasm-sw\ 34 15 112
  69. JUMP.FAIL FILE_CREATION_ERROR
  70. COPY ~1\chasm.exe    ~1\chasm-sw\ 34 15 112
  71. JUMP.FAIL FILE_CREATION_ERROR
  72. COPY ~1\csm.bin      ~1\chasm-sw\ 34 15 112
  73. JUMP.FAIL FILE_CREATION_ERROR
  74. COPY ~1\dpmi16bi.ovl ~1\chasm-sw\ 34 15 112
  75. JUMP.FAIL FILE_CREATION_ERROR
  76. COPY ~1\ps10.exe     ~1\chasm-sw\ 34 15 112
  77. JUMP.FAIL FILE_CREATION_ERROR
  78. COPY ~1\chasm.cfg    ~1\chasm-sw\ 34 15 112
  79. JUMP.FAIL FILE_CREATION_ERROR
  80. COPY ~1\readme.txt   ~1\chasm-sw\ 34 15 112
  81. JUMP.FAIL FILE_CREATION_ERROR
  82.  
  83. PAUSE 200                 ' 2 second delay
  84.  
  85. WINOPEN 29 11 47     
  86. "   Finishing the installation ......  "
  87.  
  88. DELETE ~1\legal.txt    34 15 112
  89. DELETE ~1\rtm.exe      34 15 112
  90. DELETE ~1\chasm.def    34 15 112
  91. DELETE ~1\chasm.exe    34 15 112
  92. DELETE ~1\csm.bin      34 15 112
  93. DELETE ~1\dpmi16bi.ovl 34 15 112
  94. DELETE ~1\ps10.exe     34 15 112
  95. DELETE ~1\chasm.cfg    34 15 112
  96. DELETE ~1\readme.txt   34 15 112
  97.  
  98.  
  99. '*************************************************************************** 
  100. :CONCLUDE
  101.  
  102. PAUSE 100                 ' 2 second delay
  103.  
  104. SHADOW ON
  105.  
  106. WINOPEN 10 20 31
  107. ""
  108. " Would you like to view the README.TXT file Y or N "
  109. ""
  110. ASK 63 21
  111. JUMP.YES VIEW_README
  112.  
  113. :TECHSUPPORT
  114. WINOPEN 3 2 95
  115. "               Thanks for trying the DEMO of CHASM - The Rift            "
  116. ""
  117. "   To Play:    Switch to the CHASM-SW directory and "
  118. "               simply run the 'CHASM.EXE' file! "
  119. ""
  120. ""
  121. ""
  122. "" 
  123. "               < Push the ENTER key to return to DOS >" 
  124.  
  125. WAIT 50 70
  126.  
  127. JUMP OK_DONE
  128.  
  129.  
  130. '*************************************************************************** 
  131. :FILE_CREATION_ERROR
  132. WINCLOSE
  133. WINOPEN 5 14 31
  134. " Could not copy file. "
  135. ""
  136. " Push the Enter key to try again. "
  137. WAIT 16 64
  138.  
  139. WINCLOSE
  140. JUMP WHERE_TO_PUT_BACKUP
  141.  
  142. '*************************************************************************** 
  143. :VIEW_README
  144. VIEW readme.txt 79 31
  145.  
  146. JUMP TECHSUPPORT
  147.  
  148. '*************************************************************************** 
  149. :OK_DONE
  150. END
  151.