@echo off TITLE Noob's World setlocal enabledelayedexpansion :menu cls echo. echo Welcome To NoobsWorld! echo ------------------------ echo Be Prepared For Easyness echo. echo 1)Start Game? echo 2)Quit :( echo. echo. set /p c=C:\ if "%c%" == "1" goto new if "%c%" == "2" goto exit :new set monsterdmg2=5 set monsterhp3=60 set monsterdmg3=7 set playerhp=100 set monsterhp=30 set monsterhp2=50 set playerdmg6=20 set monsterdmg4=8 set playerdmg=6 set monsterdmg=4 set playerdmg2=8 set level=1 set chalhp=80 set chaldmg=7 goto home :home cls echo Player Level: %level% echo. echo. echo Welcome to your Spawn AKA: Home. echo ---------------------------------------------------- echo So, By the way. I'm "The Voice", I'll be your guide! echo. echo. echo 1)Attack Something? echo 2)Exit to Menu? echo. echo. echo Are You Gonna Pick One!?!?!?!?!? set /p c=C:\ if "%c%" == "1" goto encounter1 if "%c%" == "2" goto menu :home1 cls echo Player Level: %level% echo. echo. echo Welcome to your Spawn AKA: Home. echo ---------------------------------------------------- echo So, By the way. I'm "The Voice", I'll be your guide! echo. echo. echo 1)Attack Something? echo 2)Exit to Menu? echo. echo. echo Are You Gonna Pick One!?!?!?!?!? set /p c=C:\ if "%c%" == "1" goto encounter2 if "%c%" == "2" goto menu :encounter1 cls echo A Slime Shuffles By, Attack It? echo. echo You: %playerhp% echo ------------------ echo Slime: %monsterhp% echo. echo 1)Attack? echo 2)Run Away? echo. echo. set /p c=C:\ if "%c%" == "1" goto attack1 if "%c%" == "2" goto home1 goto encounter1 :attack1 set /a playerhp-=%monsterdmg% set /a monsterhp-=%playerdmg% if %monsterhp% lss 0 goto preencounter if %playerhp% lss 0 goto death goto encounter1 :preencounter cls echo. echo LEVEL UP! You're Now Level 2! echo. echo Would You Like To Continue? echo. echo. echo 1)Next Battle? echo 2)Run Back echo. echo. set level=2 set /p c=C:\ if "%c%" == "1" goto encounter2 if "%c%" == "2" goto home1 :encounter2 cls echo A Spider Scurries By! echo. echo You: %playerhp% echo ------------------ echo Spider: %monsterhp2% echo. echo 1)Attack It? echo 2)Run Away! echo. echo. set /p c=C:\ if "%c%" == "1" goto attack2 if "%c%" == "2" goto home :attack2 set /a playerhp-=%monsterdmg2% set /a monsterhp2-=%playerdmg2% if %monsterhp2% lss 0 goto preencounter2 if %playerhp% lss 0 goto death goto encounter2 :preencounter2 cls echo. echo. echo Would You Like To Continue? echo. echo. echo 1)Next Battle? echo 2)Run Back echo. echo. set /p c=C:\ if "%c%" == "1" goto encounter3 if "%c%" == "2" goto home2 :home2 cls echo Player Level: %level% echo. echo. echo Welcome to your Spawn AKA: Home. echo ---------------------------------------------------- echo So, By the way. I'm "The Voice", I'll be your guide! echo. echo. echo 1)Attack Something? echo 2)Exit to Menu? echo. echo. echo Are You Gonna Pick One!?!?!?!?!? set /p c=C:\ if "%c%" == "1" goto encounter3 if "%c%" == "2" goto menu :encounter3 cls echo. echo A Huge Slime Appears! echo. echo You: %playerhp% echo ---------------------- echo Big Slime: %monsterhp3% echo. echo 1)Attack It? echo 2)Run Away Like A Wimp? echo. echo. set /p c=C:\ if "%c%" == "1" goto attack3 if "%c%" == "2" goto home2 :attack3 set /a playerhp-=%monsterdmg3% set /a monsterhp3-=%playerdmg3% if %monsterhp3% lss 0 goto preencounter3 if %playerhp% lss 0 goto death goto encounter3 :preencounter3 cls echo. echo YOU LEVELED UP! You're Now Level 3 echo. echo Would You Like To Continue? echo. echo 1)Venture Forth? echo 2)Wimp Out? echo 3)Try a "Challenge"? echo. /set c=C:\ /set level=3 if "%c%" == "1" goto encounter2 if "%c%" == "2" goto home3 if "%c%" == "3" goto challenge1 :challenge1 echo. echo Woah! Be careful its a boss! echo Warty Troll Stumps In. echo. echo You: %playerhp% echo ------------------ echo Troll: %chalhp% echo. echo 1)Attack? echo 2)Run Away echo 3)??? echo. set /p c=C:\ if "%c%" == "1" goto attack3 if "%c%" == "2" goto home3 if "%c%" == "3" goto attack6 :attack6 set /a playerhp-=%monsterdmg4% set /a chalhp-=%playerdmg6% if %chalhp% lss 0 goto preencounter4 if %playerhp% lss 0 goto death goto challenge1 :preencounter4 cls echo Yeah! YOU LEVELED UP! :) You're now Level 4 echo. echo Would You Like To Continue? echo. echo. echo 1)Next Battle? echo 2)Run Back echo. echo. set /p c=C:\ if "%c%" == "1" goto encounter4 if "%c%" == "2" goto home2 :death goto home3