[solved]choice command is not working for me

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
princesstwi
Posts: 26
Joined: 03 Dec 2013 12:34

[solved]choice command is not working for me

#1 Post by princesstwi » 03 Dec 2013 12:46

hi i am new to these batch files
i am having trouble with my choice command :(
no matter what i do if i say N for no it will go to :start instead of :wrongAnswer
can anyone help me fix this problem i am on a windows vista


Code: Select all

@echo off
cls
goto main

:main
cls
echo.
echo.
echo -----------------------
echo  I want to play a game
echo -----------------------
echo.
echo.
choice /c YN /t 10 /d Y /m "do you want to play a game with me yes or no"
if errorlevel 1 goto start
if errorlevel 2 goto wrongAnswer



:start
cls
echo.
echo.
echo *you wake up in a room strapped to a table* now lets get started with our game. Ihope your ready to be tested to your limit
echo.
pause
cls
choice /c LR /t 10 /d L /m "As you can see there are two areas one will hold your freedom the other will hold your doom. choose wisely left door or right door?"
if errorlevel 1 goto death
if errorlevel 2 goto live


:wrongAnswer
cls
echo.
echo.
choice /c FT /t 10 /d f /m "fine have it your way then *he tilts his head upward* what do you do? do you walk forward or turn around"
if errorlevel 1 goto sleepForward
if errorlevel 2 goto sleepTurn
Last edited by princesstwi on 10 Dec 2013 10:19, edited 1 time in total.

AiroNG
Posts: 46
Joined: 17 Nov 2013 15:00
Location: Germany

Re: choice command is not working for me

#2 Post by AiroNG » 03 Dec 2013 13:22

In combination with "choice" you have to use the "if errorlevel" lines in a descending order:

Code: Select all

if errorlevel 2 goto wrongAnswer
if errorlevel 1 goto start

Code: Select all

if errorlevel 2 goto live
if errorlevel 1 goto death

and so on.

princesstwi
Posts: 26
Joined: 03 Dec 2013 12:34

Re: choice command is not working for me

#3 Post by princesstwi » 03 Dec 2013 13:25

THANK YOU I LoVE YOU

Post Reply