################################START INFO################################ @echo off TITLE KNIGHT SLAUGHTER! setlocal enabledelayedexpansion :Tut cls echo. echo Welcome to KNIGHT SLAUGHTER. echo This is a little tutorial where you can learn the game controls! echo. echo To answer a question you will type the number before the caption into your "Enter:" space. echo For example a party you're on says 1) Go to sleep 2)Bye! echo If you wanted to pick 1) Go to sleep you would type 1 in the enter bar. echo. echo 1) Let's Go! echo. echo. set /p c=Enter: if "%c%" == "1" goto New goto Tut :New clkls set Money=0 set Hp=10 set Atk=3 set Knighthp=7 set Knightatk=2 set KnightKO=0 goto Menu :Menu cls echo. echo You Wanna Kill Knights Or Nah!?! echo. echo. echo 1) I'm Ready Man! :) echo 2) This Game Looks Sucky... :( echo. echo. set /p c=Enter: if "%c%" == "1" goto Backstory if "%c%" == "2" goto exit goto Menu #########################STORY LINE################################ :Backstory cls echo. echo You were born at midnight on Halloween, people always thought you were satan. echo ..... echo Oh, wait you are! echo Seek your revenge on the knights who call you satan! Slaughter them! echo. echo. echo A) Continue and Seek Revenge echo ---------------------------- echo B) Wimp Out and Leave! echo. echo. set /p c=Enter: if "%c%" == "A" goto Badtown if "%c%" == "B" goto exit goto Backstory #############################SHOP, SPAWN, OTHER CHECKPOINTS!####################### :Badtown cls echo. echo. echo Heh! Welcome to Badtown, Yer' Satan Aren't you?!? echo Well Yer' Welcome Here! echo. echo 1) Time to kill some knights! echo. echo 2) Go on a shopping spree at Badshop! echo. echo 3) Hall 'o Stats! echo. echo. set /p c=Enter: if "%c%" == "1" goto Knight1 if "%c%" == "2" goto Badshop if "%c%" == "3" goto Stats goto Badtown :Stats cls echo. echo Here are you're beloved statistics! echo ----------------------------------- echo. echo. echo Your Health Points %Hp% echo Your Attack Damage %Atk% echo Knights Killed %KnightKO% echo. echo A) K, I'm Done! echo. echo. set /p c=Enter: if "%c%" == "A" goto Badtown goto Stats :Badshop cls echo. echo Welcome To My Shop! echo My Name Is Bilde The Merchant. echo. echo 1) Weapons echo ---------- echo 2) Potions echo ---------- echo 3) Armor echo ---------- echo A) Back To Badtown echo. echo. set /p c=Enter: if "%c%" == "1" goto Weapons if "%c%" == "2" goto Potions if "%c%" == "3" goto Armor if "%c%" == "A" goto Badtown ############################SHOP CATAGORIES################################# :Weapons cls echo. echo 1) Used Glock 10$ echo ............. echo 2) Uzi 35$ echo ............. echo 3) Machete 85$ echo ............. echo 4) Knightinator 145$ echo ............. echo 5) Knight's Bane! 340$ echo. echo A) Go Back To Badshop echo. echo. set /p c=Enter: if "%c%" == "1" goto Usedglock if "%c%" == "2" goto Uzi if "%c%" == "3" goto Machete if "%c%" == "4" goto Knightinator if "%c%" == "5" goto KnightB if "%c%" == "A" goto Badtown :Usedglock if %money% leq 9 goto Badsorry if %money% geq 10 leq 9 set Atk=6 ( set /a Money -= 10 goto Bought ) goto Usedglock :Uzi if %money% leq 34 goto Badsorry if %money% geq 35 set Atk=10