home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem (c) Miguel Angel Lucero 1997
- cls
- echo
- echo Micromanía 32, Septiembre 1997
- echo
- choice /c:sn /n ¿Sois usuarios de Windows 95? (S\N)
- if errorlevel 2 goto no
- if errorlevel 1 goto si
- goto fin
-
- :si
- cls
- echo
- echo Solución Interactiva de "Indiana Jones and the Fate of Atlantis" (Windows 95)
- echo
- echo Micromanía 32, Septiembre 1997
- echo
- echo Iniciando la Solución...
- indysol
- goto fin
-
- :no
- cls
- echo
- echo Solución Interactiva de "Indiana Jones and the Fate of Atlantis" (Windows 3.X)
- echo
- echo Micromanía 32, Septiembre 1997
- echo
- echo Iniciando Windows...
- win indysol
- goto fin
-
- :fin
-