Hi I'm trying to make an RPG in a batch file program, but how do i make a selecting menu for new game or quit game.
all-so how would you make a player move around inside the game space?
With windows xp, I would suggest an out put menu with letters. This would be a simple suggestion this would cover the first part.(in basics) ECHO A: START NEW GAME
ECHO B: END GAME:BEGINS
SET /P CHOICE="CHOICE: "
IF %CHOICE% EQU A GOTO NEWGAME
IF %CHOICE% EQU B GOTO ENDS
CLS
ECHO PLEASE ENTER A OR B
GOTO BEGINS
:NEWGAME
::CONTENTS OF NEW GAME:ENDS
GOTO :EOF:: mike
