home *** CD-ROM | disk | FTP | other *** search
/ OK PC 58 / OKPc.iso / AODDEMO.BAT next >
DOS Batch File  |  1995-03-09  |  4KB  |  148 lines

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