| Revision: | 185 | 
| Committed: | Mon May 21 18:48:22 2007 UTC (18 years, 5 months ago) by geyser | 
| Content type: | application/x-msdos-program | 
| File size: | 378 byte(s) | 
| Log Message: | 
| # | Content | 
|---|---|
| 1 | echo off | 
| 2 | IF NOT EXIST backupok.txt ( | 
| 3 | echo Game content not backed up! | 
| 4 | ) ELSE ( | 
| 5 | echo Restoring original game content... | 
| 6 | cd ..\..\..\GameDataFolder | 
| 7 | copy ..\nikanabo\dat\original\*.dat . | 
| 8 | copy ..\nikanabo\dat\original\*.raw . | 
| 9 | copy ..\nikanabo\dat\original\*.sep . | 
| 10 | cd ..\nikanabo\dat\original | 
| 11 | echo Original game content restored. | 
| 12 | ) | 
| 13 | PAUSE |