home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :choose
- cls
- echo Scorched Planet Installation
- echo ============================
- echo.
- echo 1) Francais
- echo 2) Deutsch
- echo.
- choice /c:12 /n Which language do you wish to use?
- if errorlevel 2 goto german
- if errorlevel 1 goto french
- goto choose
-
- :french
- french\instpro -afrench
- goto end
-
- :german
- german\instpro -agerman
-
- :end
-