goto was unexpected at this time

Posted by SammytheNerd on Stack Overflow See other posts from Stack Overflow or by SammytheNerd
Published on 2013-11-11T03:41:47Z Indexed on 2013/11/11 3:53 UTC
Read the original article Hit count: 201

Filed under:
@echo off
color 0a
title Horror Game
echo.
echo.
echo.
echo.
echo Welcome to the game
echo If you get scared
echo Feel free to leave
echo.
echo.
echo You are in a dark room.
echo It is cold.
echo All you hear is a scratching sound
echo near your feet.
echo What do you do?
echo.
echo.
echo 1.) Feel around you
echo 2.) Listen for anything else
set/p input = Command?
if %input% == "1" goto Feel
if %input% == "2" goto Listen
echo.
echo.
:Feel
echo You feel around and hear a growl.
echo As you realize the scratching was
echo on your leg.
echo. 
echo You remember nothing else.
pause
end

I am trying to make a text based game for cmd and whenever i try to enter a response is instantly closes and i can barely read out "goto was unexpected at this time"

© Stack Overflow or respective owner

Related posts about batch-file