home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%xxp%"=="" goto Demo
- if "%getkey%"=="I" goto DemoI
- if "%getkey%"=="C" goto ConfigI
- if "%getkey%"=="D" goto Demo
- Goto End
-
- :Config
- install
- if not exist paitdemo.cfg goto End
-
- :Demo
- if not exist paitdemo.cfg goto Config
- cls
- echo Please note:
- echo
- echo When this demo was created, the working title for
- echo "Pepper's Adventure in Time" was "Twisty History",
- echo so that is the title you will see here.
- echo
- pause
- sierra paitdemo.cfg
- goto End
-
- :ConfigI
- install
- if not exist paitdemo.cfg goto End
-
- :DemoI
- if not exist paitdemo.cfg goto ConfigI
- sierra paitdemo.cfg
-
- :End
-