Code: Select all
-- Above this is a bunch of menu decor.
ECHO 1 - Start Game
ECHO 2 - Credits
ECHO 3 - Help
ECHO 4 - Exit
ECHO.
SET /P M=Type 1, 2, 3, or 4 then press ENTER:
IF %M%==1 GOTO game
IF %M%==2 GOTO credits
IF %M%==3 GOTO help
IF %M%==4 EXIT
PAUSE
EXIT
:help
cls
ECHO Sorry, it appears that help is not supported in this version. Download the next version when it comes out!
:credits
cls
ECHO Zachary Myrden - Head and Creator of project TCOE
:game
cls
ECHO You wake up in a dark place.... There seems to be a glass shard nearby... Pick it up? [Y/N]
SET /P M=Type Press Y and enter to pick it up. N and enter to leave it alone.
IF %M%==Y SET %dmgid%=1 GOTO S1Y1
IF %M%==N GOTO S1N1
:s1y1
cls
ECHO You picked up "Glass Shard"!
PAUSE
EXIT
:s1n1
cls
ECHO You decide to leave the glass shard alone.
PAUSE
EXIT