home *** CD-ROM | disk | FTP | other *** search
/ Collection Encyclopedia of Computer Games / GAME_ENCYCLOPAEDIA_VOLUME_1.iso / pq4 / install.scr < prev    next >
Encoding:
Text File  |  1993-11-26  |  2.5 KB  |  103 lines

  1. clear
  2. godir %1:%4 CantCreate
  3.  
  4. rem  Copy over the necessary files.
  5. rem  patches - if they exist - will be in the \both directory
  6.  
  7. echo Copying Startup Files ...
  8. copy %2:\version
  9. copy %2:\dosonly\*.*
  10. copy %2:\both\*.*
  11.  
  12. if exist sierra.exe del sierra.exe
  13.  
  14. rem  Create batch file on the fly and copy to the root dir
  15.  
  16. echo cd %4 > pq4.bat
  17. echo sierra >> pq4.bat
  18. copy pq4.bat %1:\
  19.  
  20. echo %3 > resource.cfg
  21.  
  22. echo Copying Game files...
  23.  
  24. exists %2:\disk2 Please insert the disk labelled "Disk 2" in drive %2:.
  25. copy resource.000 + %2:\both\resource.000
  26.  
  27. exists %2:\disk3 Please insert the disk labelled "Disk 3" in drive %2:.
  28. copy resource.000 + %2:\both\resource.000
  29.  
  30. exists %2:\disk4 Please insert the disk labelled "Disk 4" in drive %2:.
  31. copy resource.000 + %2:\both\resource.000
  32.  
  33. exists %2:\disk5 Please insert the disk labelled "Disk 5" in drive %2:.
  34. copy resource.000 + %2:\both\resource.000
  35.  
  36. exists %2:\disk6 Please insert the disk labelled "Disk 6" in drive %2:.
  37. copy resource.000 + %2:\both\resource.000
  38.  
  39. exists %2:\disk7 Please insert the disk labelled "Disk 7" in drive %2:.
  40. copy resource.000 + %2:\both\resource.000
  41.  
  42. exists %2:\disk8 Please insert the disk labelled "Disk 8" in drive %2:.
  43. copy resource.000 + %2:\both\resource.000
  44.  
  45. exists %2:\disk9 Please insert the disk labelled "Disk 9" in drive %2:.
  46. copy resource.000 + %2:\both\resource.000
  47.  
  48. exists %2:\disk10 Please insert the disk labelled "Disk 10" in drive %2:.
  49. copy resource.000 + %2:\both\resource.000
  50.  
  51. exists %2:\disk11 Please insert the disk labelled "Disk 11" in drive %2:.
  52. copy resource.000 + %2:\both\resource.000
  53.  
  54. exists %2:\disk12 Please insert the disk labelled "Disk 12" in drive %2:.
  55. copy resource.000 + %2:\both\resource.000
  56. copy %2:\both\resource.sfx
  57.  
  58. copy %2:\auddcomp.exe
  59.  
  60. rem rem make a bat file for install.bat to call
  61. rem echo echo Decompressing interpreter - please wait>intdcomp.bat
  62. rem echo %2:\interp.exe .\>>intdcomp.bat
  63.  
  64. echo Please wait - decompressing audio.
  65. echo This should take a few minutes.
  66. auddcomp>nul
  67.  
  68. if ERRORLEVEL 1 goto AudError
  69.  
  70. echo Decompressing interpreter - please wait
  71. interp.exe>nul
  72.  
  73. rem  copy debug script if it's there
  74. if exist %2:1.* copy %2:1.*
  75.  
  76. :exit
  77. clear
  78. echo
  79. echo  To play NOW:
  80. echo     Type PQ4 [ENTER].
  81. echo
  82. echo  To play LATER:
  83. echo     From the directory of %1:%4,
  84. echo     Type PQ4 and press [ENTER].
  85. echo
  86. pause
  87. goto Exit2
  88.  
  89.  
  90. :Exit2
  91. end
  92.  
  93.  
  94. :CantCreate
  95. alert Unable to create directory %1:%4
  96. end
  97.  
  98.  
  99. :AudError
  100. Alert AUDIO DECOMPERSSION FAILED!
  101. end
  102.  
  103.