This is a noob question but why wont his code work.
@echo off:MAINEcho.Echo.echo.echo welocomez to teh quizesecho.echo to begin press A and then enterecho for instructions press B tehn entarecho should you need to piss press C tehn teh enterzset /p input input=COMMAND?if %input%==A goto GAMEif %input%==B GOTO INSTif %input%==C exit:INSTtype INST.txtecho type in capitalsecho.echo.echo to start press Aecho to goto main press Bset /p input=COMMAND?if %input%==A goto GAMEif %input%==B goto MAINif %input%==C exit:GAMEecho.echo.echo welcome to teh gamez!echo.echo time for teh first questionecho.echo what comes first: A or Bset /p input=COMMAND?if %input%==B goto WRONG:WRONGecho YOU svck AND GOT IT WRONG PRESS A KEY TO ADMIT DEFEATpausegoto MAIN:2
At the quiz, If you enter A, you don't have any IF statement directing it away to accept or aknowledge this response, as such the process contines through the lines in order, including your wrong section.
Perhaps change it such that - instead of testing for B, test for the absence of A (if %input%<>A goto WRONG) - this allows you not to "Correctly" answer by pressing C
then add a few lines to aknowledge the right answer
echo Yay, you're not a moron.
goto MAIN