home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.12 / 1997-01_Disc_2.12.iso / patches / dg112.zip / INSTALL.BAT < prev   
DOS Batch File  |  1996-09-30  |  690b  |  48 lines

  1. @echo off
  2. cls
  3. if "%1" == "" goto NOPARAMS
  4. if "%2" == "" goto NOPARAMS
  5.  
  6. :PARAMS
  7. echo The Jagged Alliance DEADLY GAMES Update to v1.12 will be installed 
  8. echo in %1:\%2. If you did NOT install the game there, 
  9. echo press CTRL + BREAK now and type INSTALL [path] (where [path] is
  10. echo the directory where the game was installed), otherwise
  11. pause
  12.  
  13. dg112 -d -o %1:\%2
  14.  
  15. %1:
  16. cd\
  17. cd %2
  18. md DAY
  19. md PST
  20. md AIM
  21. md GUS
  22. md MIC
  23. type dg112.txt | more
  24. echo.
  25. echo Done! 
  26. echo.
  27. echo.
  28. echo.
  29.  
  30. goto END
  31.  
  32. :NOPARAMS
  33. echo.
  34. echo Usage:
  35. echo.
  36. echo INSTALL drive path
  37. echo.
  38. echo e.g.  install   c   games\deadly
  39. echo OR    install   c   deadly
  40. echo.
  41. echo.
  42. echo.
  43.  
  44. :END
  45.  
  46.  
  47.  
  48.