Search found 1 match

by thelegend27
18 Aug 2019 17:55
Forum: DOS Batch Forum
Topic: Im building a game and whenever i pick Credits, Help or Exit it starts the game.
Replies: 1
Views: 4014

Im building a game and whenever i pick Credits, Help or Exit it starts the game.

Heres the code. -- Above this is a bunch of menu decor. ECHO 1 - Start Game ECHO 2 - Credits ECHO 3 - Help ECHO 4 - Exit ECHO. SET /P M=Type 1, 2, 3, or 4 then press ENTER: IF %M%==1 GOTO game IF %M%==2 GOTO credits IF %M%==3 GOTO help IF %M%==4 EXIT PAUSE EXIT :help cls ECHO Sorry, it appears that ...