home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 6 / 1995-05_Disc_6.iso / bioforge / bioforge / restart.bat < prev   
DOS Batch File  |  1995-02-06  |  366b  |  13 lines

  1. @echo off
  2.  
  3. echo This will delete everything in your savegame directory (GAMEDAT).  This
  4. echo will not delete any individual savegames.  If you don't want to do this, 
  5. echo hit (CTRL)-C now.  Otherwise, hit any key to continue.
  6. pause > nul
  7.  
  8. cd gamedat
  9. attrib -r -h -s *.*
  10. echo y | del *.*
  11. cd..
  12.  
  13. echo Everything in your savegame directory has been erased.