home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 298.img / HAWK1.ZIP / __INSTH.BAT next >
DOS Batch File  |  1990-09-07  |  1KB  |  47 lines

  1. rem     batch file copies THEXDER II firehawk files from
  2. rem         5 1/4 floppies. Only those files
  3. rem         needed for graphics mode are copied
  4. rem
  5. rem     %1  drive to copy to
  6. rem     %2  drive to copy from
  7. rem     %3  e/l for EGA game or LOW resolution game
  8.  
  9. echo Copying game files...
  10. :Vol1
  11. exists %2:sierra.exe
  12. if    not errorlevel 1 goto GetVol1
  13. echo Please insert the disk labeled "DISK 1 GAME DISK"  into drive %2.
  14. pause
  15. goto Vol1
  16. :GetVol1
  17. copy %2:*.*    >nul
  18. erase fileid5
  19.  
  20. :Vol2
  21. exists %2:res2.ix
  22. if    not errorlevel 1 goto GetVol2
  23. echo Please insert the disk labeled "Disk 2 MISSION DISK " into drive %2.
  24. pause
  25. goto Vol2
  26. :GetVol2
  27. copy %2:*.*   >nul
  28.  
  29. :Vol3
  30. exists %2:res3.ix
  31. if    not errorlevel 1 goto GetVol3
  32. echo Please insert the disk labeled "Disk 3 MISSION DISK " into drive %2.
  33. pause
  34. goto Vol3
  35. :GetVol3
  36. copy %2:*.*   >nul
  37.  
  38.  
  39. :volexit
  40. echo    To run THEXDER II FIREHAWK, type
  41. echo        cd %1:\sierra
  42. echo    and then type
  43. echo        THEX2
  44. pause
  45. %1:
  46. cd %1:\sierra
  47.