Im working on a batch game and I've run into a major problem, on the main menu whenever i type 1 to launch the new game script it just stays on the menu, even when pressing 4 which is supposed to close the game.
code:
:launcher
cls
type %appdata%\BatchRPG\Source\Assets\logo.txt
echo -------------------------------------------------------------------------------------
echo 1 : NEW GAME
echo 2 : LOAD GAME
echo 3 : SETTINGS
echo 4 : QUIT
set /p input =
if "%input%" EQU "1" (
call %appdata%\BatchRPG\Source\Scripts\newgame.bat
)
if "%input%" EQU "1" (
exit
)
goto launcher```