home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 6 / 1995-05_Disc_6.iso / aod / install.bat next >
DOS Batch File  |  1995-01-13  |  4KB  |  153 lines

  1. @echo off
  2. cls
  3. mode co80
  4.  
  5. rem goto German
  6. goto English
  7. rem goto French
  8.  
  9. if "%1"=="E" goto English
  10. if "%1"=="e" goto English
  11. if "%1"=="F" goto French
  12. if "%1"=="f" goto French
  13. if "%1"=="G" goto German
  14. if "%1"=="g" goto German
  15.  
  16. echo.
  17. echo.
  18. echo.
  19. echo.
  20. echo.
  21. echo.
  22. echo.
  23. echo        ┌────────────────── AOD INSTALLATION ────────────────────┐
  24. echo.       │                                                        │
  25. echo        │  This will install the English language demo of AOD.   │
  26. echo.       │                                                        │
  27. echo        │  You can bypass this menu in the future by             │
  28. echo        │  entering "install e" from the DOS prompt.             │
  29. echo.       │                                                        │
  30. echo.       │  To install the German language version, hit Crtl-C    │
  31. echo        │  now and type "install g" at the DOS prompt.           │
  32. echo.       │                                                        │
  33. echo        │  To install the French language version, hit Crtl-C    │
  34. echo        │  now and type "install f" at the DOS prompt.           │
  35. echo.       │                                                        │
  36. echo.       └────────────────────────────────────────────────────────┘
  37. echo.
  38. echo.
  39. pause
  40. cls
  41.  
  42.  
  43.  
  44. :English
  45. IF NOT EXIST DS\*.* GOTO enginst
  46. rem cd \ds
  47. rem call showfile engaod.txt
  48. rem cd\
  49.  
  50. :enginst
  51. cd \install\english
  52. call inst.exe -f
  53.  
  54. rem *** make sure install was completed before running soundset ***
  55. IF NOT EXIST SOUNDSET.EXE  GOTO end
  56. IF NOT EXIST RESOURCE.CFG  GOTO end
  57. call soundset
  58.  
  59. echo.
  60. echo.
  61. echo.
  62. echo.
  63. echo.  To play the demo NOW:
  64. echo.     Type DEMO and press [ENTER].
  65. echo.
  66. echo.  To play the demo LATER:
  67. echo.     CD to the directory on your hard drive where you 
  68. echo.     installed the demo.
  69. echo.     Make sure the CD-ROM is in the drive.
  70. echo.     Type DEMO and press [ENTER].
  71. echo.
  72. echo.  If you should ever need to change your sound card
  73. echo.  selection or settings, CD to the directory on your
  74. echo.  hard drive where you installed the demo and
  75. echo.  run SOUNDSET again.
  76.  
  77. goto end
  78.  
  79.  
  80.  
  81.  
  82.  
  83. :German
  84. IF NOT EXIST DS\*.* GOTO gerinst
  85. cd \ds
  86. call showfile geraod.txt G
  87. cd\
  88.  
  89. :gerinst
  90. cd  install\german
  91. call inst.exe -f
  92.  
  93. rem *** make sure install was completed before running soundset ***
  94. IF NOT EXIST SOUNDSET.EXE  GOTO end
  95. IF NOT EXIST RESOURCE.CFG  GOTO end
  96.  
  97. call soundset
  98.  
  99.  
  100. rem german translation here
  101. echo.  Um jetzt zu spielen:
  102. echo.     Geben Sie ein: DEMO [EINGABE].
  103. echo.
  104. echo.  Um später zu spielen:
  105. echo.     Wechseln Sie zum Spielverzeichnis,
  106. echo.     und legen Sie die CD ins Laufwerk ein.
  107. echo.     Geben Sie ein: DEMO [EINGABE]
  108. echo.
  109. echo.  Falls Sie Ihre Toneinstellungen später ändern 
  110. echo.  wollen, legen Sie die CD ins Laufwerk ein, und
  111. echo.  starten Sie SOUNDSET noch einmal.
  112.  
  113. goto end
  114.  
  115.  
  116.  
  117.  
  118.  
  119. :French
  120. IF NOT EXIST DS\*.* GOTO frninst
  121. cd \ds
  122. call showfile freaod.txt  F
  123. cd\
  124.  
  125. :frninst
  126. cd install\french
  127. call inst.exe -f
  128.  
  129. rem *** make sure install was completed before running soundset ***
  130. IF NOT EXIST SOUNDSET.EXE  GOTO end
  131. IF NOT EXIST RESOURCE.CFG  GOTO end
  132.  
  133. call soundset
  134.  
  135. rem french translation
  136. echo.  Pour jouer maintenant:
  137. echo.     Tapez DEMO et appuyez sur [ENTREE].
  138. echo.
  139. echo.  Pour jouer plus tard:
  140. echo.     Ouvrez le répertoire du jeu.
  141. echo.     Assurez-vous que le CD se trouve dans le lecteur.
  142. echo.     Tapez DEMO et appuyez sur [ENTREE].
  143. echo.
  144. echo.  Si vous devez modifier la sélection ou les paramètres
  145. echo.  de la carte sonore, ouvrez le répertoire du jeu,
  146. echo.  et lancez à nouveau SOUNDSET.
  147.  
  148. goto end
  149.  
  150.  
  151. :end
  152.  
  153.