home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games 4
/
CD_1.iso
/
bioforge
/
restart.bat
< prev
Wrap
DOS Batch File
|
1995-02-06
|
366b
|
13 lines
@echo off
echo This will delete everything in your savegame directory (GAMEDAT). This
echo will not delete any individual savegames. If you don't want to do this,
echo hit (CTRL)-C now. Otherwise, hit any key to continue.
pause > nul
cd gamedat
attrib -r -h -s *.*
echo y | del *.*
cd..
echo Everything in your savegame directory has been erased.