home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 November / pcwk_11_98B.iso / Gry1 / Xmendemo / XMENDEMO.EXE / install.bat next >
DOS Batch File  |  1997-10-17  |  1KB  |  56 lines

  1. @echo off
  2.  
  3. if x%1==x goto error
  4. if not exist %1\quake.exe goto error
  5.  
  6. echo.
  7. echo Installing X-Men files to your Hard Drive..
  8.  
  9. mkdir %1\xmendemo
  10.  
  11. echo pak0.pak
  12. copy pak0.pak %1\xmendemo
  13. if not exist %1\xmen\pak0.pak goto nospace
  14.  
  15. echo progs.dat
  16. copy progs.dat %1\xmendemo
  17. if not exist %1\xmen\progs.dat goto nospace
  18.  
  19. echo xmen.bat
  20. copy xmen.bat %1\
  21. if not exist %1\xmen.bat goto nospace
  22.  
  23. echo.
  24. echo Installation succesfull.
  25. echo.
  26. echo Change to your Quake directory, and type 'xmen' to start the game.
  27.  
  28. goto end
  29.  
  30. :error
  31. echo _____________________________________________________________
  32. echo.
  33. echo To install X-Men for dos, please use:
  34. echo.
  35. echo    INSTALL [quake-dir]
  36. echo.
  37. echo Where [quake-dir] is the location of your Quake installation.
  38. echo.
  39. echo eg. INSTALL c:\quake
  40. echo _____________________________________________________________
  41. goto end
  42.  
  43. :nospace
  44. echo.
  45. echo !!! Unable to install X-Men files !!!
  46. echo.
  47. echo Please check:
  48. echo.
  49. echo (a) you entered the correct location of your Quake installation
  50. echo.
  51. echo (b) that you have at least 80mb of Free Space on the
  52. echo     destination drive.
  53. echo.
  54. goto end
  55.  
  56. :end