echo off color c echo ******* ** ** **** ** ******** ******** ******* **** ** echo /**////** /** /**/**/** /** **//////**/**///// **/////** /**/** /** echo /** /**/** /**/**//** /** ** // /** ** //**/**//** /** echo /** /**/** /**/** //** /**/** /******* /** /**/** //** /** echo /** /**/** /**/** //**/**/** *****/**//// /** /**/** //**/** echo /** ** /** /**/** //****//** ////**/** //** ** /** //**** echo /******* //******* /** //*** //******** /******** //******* /** //*** echo /////// /////// // /// //////// //////// /////// // /// echo ------------------------------------------------------------------------------ echo ---------- ******* ** ** **** ** **** ** ******** ******* echo ---- -----/**////** /** /**/**/** /**/**/** /**/**///// /**////** echo -- ---- --/** /** /** /**/**//** /**/**//** /**/** /** /** echo -- -- -/******* /** /**/** //** /**/** //** /**/******* /******* echo - ---- -- /**///** /** /**/** //**/**/** //**/**/**//// /**///** echo -- -- -- -/** //** /** /**/** //****/** //****/** /** //** echo -- -- - /** //**//******* /** //***/** //***/********/** //** echo -- -- -- -// // /////// // /// // /// //////// // // goto Main Menu :Main Menu echo -Main Menu- echo Please choose one of the following echo 1.) Start Game echo 2.) Quit set /p menuselect=_ if %menuselect%==1 goto Character if %menuselect%==2 goto Quit :Quit exit :Character cls echo Character Creation echo Please enter a name for your character set /p name=_ echo Ah, is your name %name%?(y,n) set /p namecheck=_ if %namecheck%==y goto gamestart if %namecheck%==n goto Character :gamestart cls echo %name% makes his way towards the dungeon. He must complete it in order to convince the echo king that he is the strongest. pause goto P1 :mainhall cls echo You notice the vast doors that span the hallway. echo You can enter doors d1, d2, d3, d4, and d5. set /p mhc=_ if %mhc%==d1 goto d1 if %mhc%==d2 goto d2 if %mhc%==d3 goto d3 if %mhc%==d4 goto d4 if %mhc%==d5 goto d5