home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / Othergam / ZEL-1.ZIP / __INSTH.BAT next >
DOS Batch File  |  1990-11-15  |  986b  |  47 lines

  1. rem     batch file copies ZELIARD files from
  2. rem         5 1/4 (3 1/2)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:zeliard.exe
  12. if    not errorlevel 1 goto GetVol1
  13. echo Please insert the disk labeled "DISK 1" disk into drive %2.
  14. pause
  15. goto Vol1
  16. :GetVol1
  17. copy %2:*.*    >nul
  18.  
  19. :Vol2
  20. exists %2:zelres2.sar
  21. if    not errorlevel 1 goto GetVol2
  22. echo Please insert the disk labeled "DISK 2" disk into drive %2.
  23. pause
  24. goto Vol2
  25. :GetVol2
  26. copy %2:zelres2.sar    >nul
  27.  
  28. :Vol3
  29. exists %2:zelres3.sar
  30. if    not errorlevel 1 goto GetVol3
  31. echo Please insert the disk labeled "DISK 3" disk into drive %2.
  32. pause
  33. goto Vol3
  34. :GetVol3
  35. copy %2:zelres3.sar    >nul
  36.  
  37.  
  38.  
  39. :volexit
  40. echo    To run ZELIARD, type
  41. echo        cd %1:\gamearts
  42. echo    and then type
  43. echo        ZELIARD
  44. %1:
  45. cd %1:\gamearts
  46. pause
  47.