home *** CD-ROM | disk | FTP | other *** search
/ PC Player 1998 May / PCP_9805.ISO / PATCHES / DARKR / GORE.ZIP / GORE.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-10-17  |  1.6 KB  |  73 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 -    gore 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\gore
  21.  
  22. @copy gore.ftg %1\dark\addon\gore
  23.  
  24. @md %1\dark\scenario\single\gore
  25.  
  26. @copy gore.map %1\dark\scenario\single\gore
  27.  
  28. @copy gore.scn %1\dark\scenario\single\gore
  29.  
  30. @copy tactics.mm %1\dark\scenario\single\gore
  31.  
  32. @copy packman.cfg %1\dark\scenario\single\gore
  33.  
  34. @copy units.txt %1\dark\scenario\single\gore
  35.  
  36. @copy gore.cfg %1\dark\addon\gore
  37.  
  38. @copy goresfx.ftg %1\dark\addon\gore
  39.  
  40. @copy mlstring.cfg %1\dark\scenario\single\gore
  41.  
  42. @copy weapon.txt %1\dark\scenario\single\gore
  43.  
  44. @copy animate.txt %1\dark\scenario\single\gore
  45.  
  46. goto success
  47.  
  48. :success
  49.  
  50. echo -
  51. echo -    That's it!
  52. echo -
  53. goto end
  54.  
  55. :err
  56.  
  57. echo /--------------------------------------------------------------------\
  58. echo -    Please enter the directory in which you installed Dark Reign.   -
  59. echo -                                                                    -
  60. echo -    eg: gore c:\"program files"\activision\"dark reign"            -
  61. echo \--------------------------------------------------------------------/
  62. pause
  63. goto end
  64.  
  65. :makedir
  66.  
  67. @md %1\dark\addon
  68.  
  69. goto go
  70.  
  71. :end
  72.  
  73.