Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- title Quiz Game!
- color 0a
- :menu
- cls
- echo Welcome, to........ DA MENU!
- echo ---------------------------
- pause
- echo From here you can......
- echo -----------------------
- echo.
- echo 1. Start
- echo 2. Info
- echo 3. Exit
- echo.
- pause
- set /p menuchoice=
- if %menuchoice% == 1 goto startgame
- if %menuchoice% == 2 goto info
- if %menuchoice% == 3 exit
- goto menu
- :info
- cls
- title Information on da quiz!
- pause
- echo This quiz is highly awesome!!!! Please use at your own risk!!!
- pause
- echo It's a joke if you couldn't tell
- cls
- goto menu
- :startgame
- cls
- title Prepare... to start the QUIZ!!1!!
- color 1a
- echo Please enter your name...
- echo.
- set /p player=
- echo.
- echo Press any key to start, THE QUIZ!
- pause >nul
- goto q1
- :q1
- clr
- title Question 1!
- cls
- echo Question 1
- echo ----------
- echo.
- echo Who owns the company "Microsoft"?
- echo.
- echo A) Steve Jobs
- echo B) Me
- echo C) Bill Gates
- echo D) A random guy in the dustbin! : class="re0">O
- echo.
- set /p ans1=
- if %ans1% == a goto wr1
- if %ans1% == b goto wr1
- if %ans1% == c goto cr1
- if %ans1% == d goto wr1
- goto q1
- :wr1
- cls
- title You LOSE! Ha ha! >:D
- color 8b
- echo Sorry, %player%... But you lost :'(
- echo.
- echo Press any key to return to the menu...
- pause >nul
- goto q1
- :cr1
- cls
- title YOU ARE CORRECT!!!1!! : class="re0">3
- color 9a
- echo Congratz! You got this question, correct! Well done, %player%!
- echo.
- echo Press any key to continue...
- pause >nul
- goto q2
Add Comment
Please, Sign In to add comment