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 - alien 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\alien
-
- @copy alien.ftg %1\dark\addon\alien
-
- @copy packman.cfg %1\dark\addon\alien
-
- @copy trneff.txt %1\dark\addon\alien
-
- @copy pack1.cfg %1\dark\packman.cfg
-
- @if exist %1\dark\addon\asteroid\nul goto allterr
-
-
- 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: alien c:\"program files"\activision\"dark reign" -
- echo \--------------------------------------------------------------------/
- pause
- goto end
-
- :makedir
-
- @md %1\dark\addon
-
- goto go
-
- :allterr
-
- copy allterr.cfg %1\dark\packman.cfg
-
- goto success
-
- :end
-
-
-