First post, by curvedline
@ECHO OFF
CLS
ECHO shift = when you are hanging over the trap, OR FIGHT AND KILL
ECHO shift + arrow = walk
ECHO shift + L = next level
ECHO.
ECHO control Q = exit to dos
ECHO control G = save the position where you were
ECHO control L = load only while program is loading at start
ECHO control A = go to beginning of the level
ECHO control R = give up
ECHO.
choice /C:QC "Q to abort or C to continue"
IF ErrorLevel 2 GOTO :CONTINUE
IF ErrorLevel 1 GOTO :END
:CONTINUE
prince megahit
:END
Is there a way to do this like below with "CHOICE" or any other batch command I dont know
because DOSBOX says it doesnt support SET VAR=INPUT:
i dont want to press C to continue, i want to use any parts of my body like elbow to press any key with eyes closed while watching video
ECHO Q. quit
ECHO press any other key to play
ECHO.
SET VAR=DUMMY
SET /P VAR=INPUT:
IF /I %VAR%==Q GOTO :EOF
IF /I %VAR%==DUMMY GOTO :CONTINUE
GOTO :CONTINUE