home *** CD-ROM | disk | FTP | other *** search
- @echo off
- @if "%1"=="" goto err
-
- echo ----
- echo - Please make sure you have entered the correct path to your
- echo - Dark Reign directory! Failure to do so may result
- echo - in weird things happening!
- echo - This batch file assumes you have entered the directory name
- echo - in the following format:
- echo - gore c:\"program files"\activision\"dark reign"
- echo - Again, make sure this batch file points to this directory.
- echo ----
-
- pause
-
- @if not exist %1\dark\addon\nul goto makedir
-
- :go
-
- @md %1\dark\addon\gore
-
- @copy gore.ftg %1\dark\addon\gore
-
- @md %1\dark\scenario\single\gore
-
- @copy gore.map %1\dark\scenario\single\gore
-
- @copy gore.scn %1\dark\scenario\single\gore
-
- @copy tactics.mm %1\dark\scenario\single\gore
-
- @copy packman.cfg %1\dark\scenario\single\gore
-
- @copy units.txt %1\dark\scenario\single\gore
-
- @copy gore.cfg %1\dark\addon\gore
-
- @copy goresfx.ftg %1\dark\addon\gore
-
- @copy mlstring.cfg %1\dark\scenario\single\gore
-
- @copy weapon.txt %1\dark\scenario\single\gore
-
- @copy animate.txt %1\dark\scenario\single\gore
-
- goto success
-
- :success
-
- echo -
- echo - That's it!
- echo -
- goto end
-
- :err
-
- echo /--------------------------------------------------------------------\
- echo - Please enter the directory in which you installed Dark Reign. -
- echo - -
- echo - eg: gore c:\"program files"\activision\"dark reign" -
- echo \--------------------------------------------------------------------/
- pause
- goto end
-
- :makedir
-
- @md %1\dark\addon
-
- goto go
-
- :end
-
-