Code: Select all
@echo off
title Surgery Robot Software
MODE CON COLS=999 LINES=999
color F0
goto start
:start
echo Booting software...
TIMEOUT /T 5
cls
echo SURGERY ROBOT SOFTWARE v1.0
TIMEOUT /T 2
cls
goto B
:B
echo.
echo Would you like to do a tutorial? Answer with yes or no.
set /p answer=
if %answer%==yes goto tutorial
if %answer%==no goto startsurgery
cls
goto B
:tutorial
echo.
echo Controls:
echo Forwards: [W]
echo Backwards: [S]
echo Left: [A]
echo Right: [D]
PAUSE
echo [] = You
echo {} = Tumor
PAUSE
cls
goto startsurgery
:startsurgery
echo.
echo We will start with the surgery
PAUSE
echo NOW LOADING...
TIMEOUT /T 5
color 4E
cls
echo.
echo ____________________________________
echo | {} |
echo | |
echo | |
echo | |
echo | |
echo | |
echo | |
echo | |
echo | |
echo |_______________________[]_________|
set /p answer1=
if %answer1%==w goto 1
if %answer1%==a goto 2
if %answer1%==s goto 3
if %answer1%==d goto 4
:1
cls
echo ____________________________________
echo | {} |
echo | |
echo | |
echo | |
echo | |
echo | |
echo | |
echo | |
echo | [] |
echo |__________________________________|
Well, the problem is, that it stops running when it gets to the stupid GUI.
Can anyone tell me what the problem is?
Liam.