home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 953.RESTORE.BAT < prev    next >
DOS Batch File  |  1991-12-28  |  549b  |  21 lines

  1. @echo off
  2. if not exist %1 goto oops
  3. if not "%2" == "02" if not "%2" == "01" if not "%2" == "00" goto badstat
  4. if exist restore.scr del restore.scr
  5. echo n %1>restore.scr
  6. echo l>>restore.scr
  7. echo e 0101>>restore.scr
  8. echo %2>>restore.scr
  9. echo w>>restore.scr
  10. echo q>>restore.scr
  11. debug <restore.scr >nul
  12. call pilot.bat %1 %2
  13. goto end
  14. :oops
  15. if not exist %1 echo You must enter a valid Pilot filename!
  16. goto end
  17. :badstat
  18. if "%2" == "" echo You must enter a valid Status Code!
  19. if not "%2" == "" echo That is not a valid Status Code!
  20. :end
  21.