home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem (c) Miguel Angel Lucero 1997
- cls
- echo
- echo Micromanía 33, Octubre 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 "Monkey Island I y II" (Windows 95)
- echo
- echo Micromanía 33, Octubre 1997
- echo
- echo Iniciando la solución...
- monksol
- goto fin
-
- :no
- cls
- echo
- echo Solución Interactiva de "Monkey Island I y II" (Windows 3.X)
- echo
- echo Micromanía 33, Octubre 1997
- echo
- echo Iniciando Windows...
- win monksol
- goto fin
-
- :fin
-