| Revision: | 185 |
| Committed: | Mon May 21 18:48:22 2007 UTC (18 years, 5 months ago) by geyser |
| Content type: | text/x-sh |
| File size: | 359 byte(s) |
| Log Message: |
| # | Content |
|---|---|
| 1 | #!/bin/sh |
| 2 | if [ ! -e backupok.txt ] |
| 3 | then |
| 4 | echo "Game content not backed up!" |
| 5 | else |
| 6 | echo "Restoring original game content..." |
| 7 | cd ../../../GameDataFolder |
| 8 | cp ../nikanabo/dat/original/*.dat . |
| 9 | cp ../nikanabo/dat/original/*.raw . |
| 10 | cp ../nikanabo/dat/original/*.sep . |
| 11 | cd ../nikanabo/dat/original |
| 12 | echo "Original game content restored." |
| 13 | fi |