home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / Othergam / CIVIL-2.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-11-25  |  2KB  |  81 lines

  1. echo off
  2. REM this program installs CIVILIZATION from floppies to %1\MPS\CIV
  3.  
  4. if not %1=="" goto OK1
  5. echo ERROR: No disk specified, use INSTALLC or INSTALLD or INSTALLE
  6. goto End
  7. :OK1
  8.  
  9. if not EXIST %1\MPS\CIV\BIRTH0.PAL goto OK2
  10. del %1\MPS\CIV\BIRTH0.PAL
  11. :OK2
  12.  
  13. REM  this installs new CIV subdirectory; errorlevel 0 means success
  14. MD %1\MPS
  15. MD %1\MPS\CIV
  16. if errorlevel 0 goto CopyFiles
  17. cls
  18. echo Error creating %1\MPS\CIV subdirectory, do not use INSTALL program.
  19. echo You must install CIVILIZATION manually. Sorry. 
  20. goto End
  21.  
  22. :CopyFiles
  23. REM  this copies files from floppies in to %1\MPS\CIV
  24.  
  25. cls
  26. echo Insert disk labelled "1" into your floppy disk drive, then...
  27. PAUSE
  28. copy *.* %1\MPS\CIV
  29. copy civ.bat %1\MPS
  30.  
  31. cls
  32. echo Insert disk labelled "2" into your floppy disk drive, then...
  33. PAUSE
  34. copy *.* %1\MPS\CIV
  35.  
  36. if EXIST %1\mps\civ\BIRTH0.PAL goto End
  37.  
  38. cls
  39. echo Insert disk labelled "3" into your floppy disk drive, then...
  40. PAUSE
  41. copy *.* %1\MPS\CIV
  42.  
  43. if EXIST %1\mps\civ\BIRTH0.PAL goto End
  44.  
  45. cls
  46. echo Insert disk labelled "4" into your floppy disk drive, then...
  47. PAUSE
  48. copy *.* %1\MPS\CIV
  49.  
  50. if EXIST %1\mps\civ\BIRTH0.PAL goto End
  51.  
  52. cls
  53. echo Insert disk labelled "5" into your floppy disk drive, then...
  54. PAUSE
  55. copy *.* %1\MPS\CIV
  56.  
  57. if EXIST %1\mps\civ\BIRTH0.PAL goto End
  58.  
  59. cls
  60. echo Insert disk labelled "6" into your floppy disk drive, then...
  61. PAUSE
  62. copy *.* %1\MPS\CIV
  63.  
  64. if EXIST %1\mps\civ\BIRTH0.PAL goto End
  65.  
  66. cls
  67. echo Insert disk labelled "7" into your floppy disk drive, then...
  68. PAUSE
  69. copy *.* %1\MPS\CIV
  70.  
  71. if EXIST %1\mps\civ\BIRTH0.PAL goto End
  72. cls
  73. echo Insert disk labelled "8" into your floppy disk drive, then...
  74. PAUSE
  75. copy *.* %1\MPS\CIV
  76.  
  77. cls
  78. :End
  79. echo INSTALL FINISHED
  80.  
  81.