home *** CD-ROM | disk | FTP | other *** search
/ 3D Action & Classic Games / NEW.iso / logic / incr_m2 / disk1 / install.bat < prev    next >
Encoding:
DOS Batch File  |  1994-10-21  |  1.4 KB  |  82 lines

  1. @echo off
  2.  
  3. cls
  4. echo 
  5. echo 
  6. echo 
  7. echo If you want to run the program in English, press 'E'.
  8. echo 
  9. echo Pour utiliser le programme Français, pressez 'F'.
  10. echo 
  11. echo Para juego en español, pulsa 'S'.
  12. echo 
  13. echo Um das Spiel in Deutsch zu spielen, 'D' eingeben.
  14. echo 
  15. getkey
  16.  
  17. rem 's'
  18. if errorlevel 116 goto error
  19. if errorlevel 115 goto spanish
  20. rem 'f'
  21. if errorlevel 103 goto error
  22. if errorlevel 102 goto french
  23. rem 'e'
  24. if errorlevel 102 goto error
  25. if errorlevel 101 goto english
  26. rem 'd'
  27. if errorlevel 101 goto error
  28. if errorlevel 100 goto german
  29. rem 'S'
  30. if errorlevel 84 goto error
  31. if errorlevel 83 goto spanish
  32. rem 'F'
  33. if errorlevel 71 goto error
  34. if errorlevel 70 goto french
  35. rem 'E'
  36. if errorlevel 70 goto error
  37. if errorlevel 69 goto english
  38. rem 'D'
  39. if errorlevel 69 goto error
  40. if errorlevel 68 goto german
  41.  
  42.  
  43. :error
  44. cls
  45. echo 
  46. echo 
  47. echo 
  48. echo Relancez INSTALL s'il vous plaît.
  49. echo 
  50. echo INSTALL noch einmal laufen lassen.
  51. echo 
  52. echo Por favor, ejecuta INSTALL de nuevo.
  53. echo 
  54. echo Run INSTALL again please.
  55. goto end
  56.  
  57. :french
  58. echo Attendez s'il vous plaît . . .
  59. unchunk language\french.ins .
  60. goto install
  61.  
  62. :german
  63. echo Bitte warten . . .
  64. unchunk language\german.ins .
  65. goto install
  66.  
  67. :spanish
  68. echo Espera, por favor . . .
  69. unchunk language\spanish.ins .
  70. goto install
  71.  
  72. :english
  73. echo Please wait . . .
  74. unchunk language\english.ins .
  75. goto install
  76.  
  77.  
  78. :install
  79. ~~~inst
  80.  
  81. :end
  82.