home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC/CD Gamer UK 16
/
PCGAMER16.bin
/
fury3
/
runfury3.bat
< prev
next >
Wrap
DOS Batch File
|
1995-10-04
|
2KB
|
59 lines
cls
:menu
echo off
echo ╔═══════════════════════════════════════════╗
echo ║ FURY3 ║
echo ║ ║
echo ║ IMPORTANT NOTE! ║
echo ║ ║
echo ║ This is the Fury3 WINDOWS '95 demo. ║
echo ║ ║
echo ║ If the game won't run from our PC Gamer ║
echo ║ CD, you'll need to exit and load into ║
echo ║ WINDOWS '95. Select the Windows '95 ║
echo ║ Note below for more details. ║
echo ╚═══════════════════════════════════════════╝
echo.
echo.
echo Select from one of the following options:
echo 1. Run Fury3
echo 2. Windows '95 Note
echo 3. E(X)it
echo.
echo Please enter a choice: 1,2,3
choice /c:123xi /n
if errorlevel 5 goto vpi
if errorlevel 4 goto end
if errorlevel 3 goto end
if errorlevel 2 goto run
if errorlevel 1 goto vpi
:vpi
CD\FURY3
CALL FURY3X.EXE
goto end
:run
cls
echo ╔═════════════════════════════════════════════════════╗
echo ║ ║
echo ║ FURY3 FOR WINDOWS '95 ║
echo ║ ║
echo ║ We do not suggest your run our PC Gamer CD within ║
echo ║ WINDOWS '95, but if you are, and you're having ║
echo ║ problems running this program from our PC Gamer ║
echo ║ CD, you'll need to EXIT and load Windows '95. ║
echo ║ ║
echo ║ From Windows '95, locate the game's executable ║
echo ║ file which can be found in the D:\FURY3 directory, ║
echo ║ (where "D" is the letter of your CD-ROM drive. ║
echo ║ ║
echo ║ The name of the file is FURY3X.EXE. ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════╝
echo.
pause
goto menu
:end