home *** CD-ROM | disk | FTP | other *** search
- wgtlib store.lib @x_tract.txt
- speed.exe
- title.exe
- :start
- cls
- @echo off
- cls
- echo ███ █ ████ █ █ █ █ █ ██
- echo █ █ █ █ █ █ █ █ ██ █ █
- echo █ █▀█ █▀██ █ █ █ █ █ █
- echo █ █ █ █ █ █ █ █ █ ██
- echo ███ █ █ █ █ █ █ █ █
- echo __________________________________________________________________________
- echo If you have completed the game and would like to download more levels -or-
- echo if you would like to download someone else's game to view, please visit:
- echo http://home2.paralynx.com/~phoffman/
- echo __________________________________________________________________________
- echo __________________________________________________________________________
- echo If you want to submit your hi-score to the "online hi-score list"
- echo attach your "replay.lib" file to an e-mail addressed to:
- echo phoffman@paralynx.com
- echo __________________________________________________________________________
- echo ╔═════════════════╗
- echo ║ MENU ║
- echo ║═════════════════║
- echo ║ 1. play game ║
- echo ║ 2. replay ║
- echo ║ 3. demo ║
- echo ║ 4. exit ║
- echo ╚═════════════════╝
- Choice Your choice: /c:1234
- if errorlevel 4 goto exit
- if errorlevel 3 goto demo
- if errorlevel 2 goto replay
- if errorlevel 1 goto snow_99
-
- :snow_99
- snow_99.exe
- cls
- Choice Would you like to save this game? /c:yn
- if errorlevel 2 goto start
- if errorlevel 1 goto save
- goto start
-
- :save
- wgtlib replay.lib @save.dat
- erase r0*.dat
- goto start
-
- :replay
- wgtlib replay.lib @extract.dat
- replay.exe
- erase r0*.dat
- goto start
-
- :demo
- demo.exe
- goto start
-
- :exit
- erase *.dat
- erase demo.exe
- erase title.exe
- erase replay.exe
- erase snow_99.exe
- erase speed.exe
-
- cls