home *** CD-ROM | disk | FTP | other *** search
/ PC Player 1998 May / PCP_9805.ISO / PATCHES / DARKR / PMINE.ZIP / PMINE.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-10-03  |  1.5 KB  |  69 lines

  1. @echo off
  2. @if "%1"=="" goto err
  3.  
  4. echo ----
  5. echo -    Please make sure you have entered the correct path to your
  6. echo -    Dark Reign directory! Failure to do so may result
  7. echo -    in weird things happening!
  8. echo -    This batch file assumes you have entered the directory name
  9. echo -    in the following format:
  10. echo -    pmine c:\"program files"\activision\"dark reign"
  11. echo -    Again, make sure this batch file points to this directory.
  12. echo ----
  13.  
  14. pause
  15.  
  16. @if not exist %1\dark\addon\nul goto makedir
  17.  
  18. :go
  19.  
  20. @md %1\dark\addon\pmine
  21.  
  22. @copy pmine.ftg %1\dark\addon\pmine
  23.  
  24. @md %1\dark\scenario\single\pmine
  25.  
  26. @copy pmine.map %1\dark\scenario\single\pmine
  27.  
  28. @copy pmine.scn %1\dark\scenario\single\pmine
  29.  
  30. @copy tactics.mm %1\dark\scenario\single\pmine
  31.  
  32. @copy packman.cfg %1\dark\scenario\single\pmine
  33.  
  34. @copy units.txt %1\dark\scenario\single\pmine
  35.  
  36. @copy pmine.cfg %1\dark\addon\pmine
  37.  
  38. @copy mlstring.cfg %1\dark\scenario\single\pmine
  39.  
  40. @copy weapon.txt %1\dark\scenario\single\pmine
  41.  
  42. goto success
  43.  
  44. :success
  45.  
  46. echo -
  47. echo -    That's it!
  48. echo -
  49. goto end
  50.  
  51. :err
  52.  
  53. echo /--------------------------------------------------------------------\
  54. echo -    Please enter the directory in which you installed Dark Reign.   -
  55. echo -                                                                    -
  56. echo -    eg: pmine c:\"program files"\activision\"dark reign"            -
  57. echo \--------------------------------------------------------------------/
  58. pause
  59. goto end
  60.  
  61. :makedir
  62.  
  63. @md %1\dark\addon
  64.  
  65. goto go
  66.  
  67. :end
  68.  
  69.