home *** CD-ROM | disk | FTP | other *** search
/ 500 Game Surplus / XSurplus.iso / 456 / SNAP.BAT < prev    next >
DOS Batch File  |  1992-07-11  |  592b  |  21 lines

  1. @echo off
  2. echo             Snapshot of Dezerian Adventure
  3. echo Usage: SNAP d  where d is number (single digit) of save set.
  4. if "%1"=="" goto noarg
  5. if exist song1.dez goto cont1
  6. echo Error: Must be run on hard disk in directory where Dezeria is located.
  7. goto end
  8. :cont1
  9. copy save.dat save.sv%1
  10. copy mz.dat mz.sv%1
  11. copy objchain.dat objchain.sv%1
  12. copy sites.dat sites.sv%1
  13. copy quad.dat quad.sv%1
  14. copy mazes.dat mazes.sv%1
  15. echo Save Set %1 Created... Use RESTORE to make it the current setup.
  16. goto end
  17. :noarg
  18. echo Error: Must number the save set with a single digit.
  19. :end
  20.  
  21.