Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Paste this into a .txt file and change the file extension to .bat!
- @echo off
- title Test adventure! [Version 1.2]
- color f
- cls
- echo Here are the rules for this game!
- pause
- cls
- echo I can only write the code once then I am not allowed to change it!!!
- pause
- cls
- echo But I already broke that rule
- pause
- cls
- echo But I already broke that rule.
- pause
- cls
- echo But I already broke that rule..
- pause
- cls
- echo But I already broke that rule...
- pause
- cls
- echo Eh. Lets play!
- pause
- cls
- pause
- :ColorLoop
- cls
- echo What text color do you like?
- echo.
- echo 0 = Black 8 = Gray
- echo 1 = Blue 9 = Light Blue
- echo 2 = Green A = Light Green
- echo 3 = Aqua B = Light Aqua
- echo 4 = Red C = Light Red
- echo 5 = Purple D = Light Purple
- echo 6 = Yellow E = Light Yellow
- echo 7 = White F = Bright White
- echo.
- set /p color=
- :LoopQuestion
- cls
- color %color%
- echo Do you like this color? (Y/N)
- set /p option=
- if %option%==Y goto name
- if %option%==N goto ColorLoop
- if %option%==y goto name
- if %option%==n goto ColorLoop
- goto LoopQuestion
- :name
- cls
- echo Whats your name?
- set /p name=
- cls
- echo Ok lets get into the game %name%!!!
- pause
- :replay
- cls
- echo You wake up in a forest...
- echo Your options are
- echo.
- echo a. Find flint
- echo b. Find tree's
- echo c. Find a town
- echo.
- set /p option=
- if %option%==c goto fail_a
- if %option%==b goto fail_b
- if %option%==a goto win_a
- cls
- echo .
- pause
- cls
- echo ..
- pause
- cls
- echo ...
- pause
- cls
- echo Say (a/b/c)
- pause
- goto replay
- :fail_a
- cls
- echo YOU DIE
- pause
- cls
- echo You fell into a hole you didnt notice
- pause
- cls
- echo Retry? (Y/N)
- echo.
- set /p retry=
- if %retry%==Y goto replay
- if %retry%==N exit
- if %retry%==y goto replay
- if %retry%==n exit
- cls
- echo Write (Y/N)
- pause
- cls
- echo Eh ill just restart it for you
- pause
- goto replay
- :fail_b
- cls
- echo YOU DIE
- pause
- cls
- echo You met a pack of wolves that didnt like you
- pause
- cls
- echo Retry? (Y/N)
- set /p retry=
- if %retry%==Y goto replay
- if %retry%==N exit
- if %retry%==y goto replay
- if %retry%==n exit
- cls
- echo Write (Y/N)
- pause
- cls
- echo Eh ill just restart it for you
- pause
- goto replay
- :win_a
- :replay2
- cls
- echo You find flint!
- echo You sharpend the flint into tools!
- echo What now?
- echo.
- echo a. Find a forest
- echo b. Find a town
- echo.
- set /p option=
- if %option%==b goto fail_a
- if %option%==a goto win_b
- cls
- echo .
- pause
- cls
- echo ..
- pause
- cls
- echo ...
- pause
- cls
- echo Dude just say (a/b/c)
- pause
- echo you did it before...
- pause
- goto replay2
- :win_b
- :replay3
- cls
- echo You find a pack of wolves but you kill them.
- echo What now?
- echo.
- echo a. Find a town
- echo b. Make a house
- echo.
- set /p option=
- if %option%==a goto fail_a
- if %option%==b goto win_3
- cls
- echo .
- pause
- cls
- echo ..
- pause
- cls
- echo ...
- pause
- cls
- echo Dude just say (a/b/c)
- pause
- echo you did it before...
- pause
- goto replay3
- :win_3
- cls
- echo YOU WIN!
- pause
- cls
- echo You live the rest of your life in your small hut.
- pause
- cls
- echo Play again %name%? (Y/N)
- echo.
- set /p option=
- if %option%==Y goto replay
- if %option%==N exit
- if %option%==y goto replay
- if %option%==n exit
- cls
- echo ...
- pause
- cls
- echo ...
- echo ...
- pause
- cls
- echo ...
- echo ...
- echo ...
- pause
- cls
- echo This is the final secret
- pause
- cls
- echo Welp this secret got boring.
- pause
- cls
- echo kicking you now!
- pause
- exit
Advertisement
Add Comment
Please, Sign In to add comment