tcl1

[Batch] The ROBLOX Quiz

Jan 23rd, 2014
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.01 KB | None | 0 0
  1. @echo off
  2. REM Put this code in any text editor then save this file as
  3. REM robloxquizbatch.bat and run it.
  4. cls
  5. set defaultcolor=0c
  6. set quizcolor=0a
  7. set chkp=03
  8. set fcolor=02
  9. color %defaultcolor%
  10. goto intro
  11. :intro
  12. cls
  13. echo -----------------
  14. echo ^|THE ROBLOX QUIZ^|
  15. echo -----------------
  16. timeout /t 1 /nobreak >nul
  17. goto menu
  18. :wrong
  19. color c0
  20. cls
  21. echo ---------------------------
  22. echo YOU GOT THE QUESTION WRONG!
  23. echo ---------------------------
  24. timeout /t 1 /nobreak >nul
  25. color %defaultcolor%
  26. goto menu
  27. :menu
  28. cls
  29. echo -----------------
  30. echo ^|THE ROBLOX QUIZ^|
  31. echo -----------------
  32. echo Press P to play
  33. echo Press X to exit
  34. choice /c PX /n
  35. if %errorlevel%==1 goto question1
  36. if %errorlevel%==2 exit
  37. :question1
  38. color %quizcolor%
  39. cls
  40. echo 1.) Who has the user ID of 261?
  41. echo  1. Shedletsky ^| 2. Telamon
  42. echo  3. builderman ^| 4. ROBLOX
  43. choice /c 1234 /n
  44. if %errorlevel%==1 goto question2
  45. if %errorlevel%==2 goto wrong
  46. if %errorlevel%==3 goto wrong
  47. if %errorlevel%==4 goto wrong
  48. :question2
  49. cls
  50. echo 2.) Who is the creator of Welcome to ROBLOX Building?
  51. echo 1. ROBLOX ^| 2. JJ5x5
  52. choice /c 12 /n
  53. if %errorlevel%==1 goto question3
  54. if %errorlevel%==2 goto wrong
  55. :question3
  56. cls
  57. echo 3.) Why were circle studs removed?
  58. echo 1. Because ROBLOX might get sued if old studs
  59. echo were kept
  60. echo 2. Because the studs looked too plain
  61. choice /c 12 /n
  62. if %errorlevel%==1 goto question4
  63. if %errorlevel%==2 goto wrong
  64. :question4
  65. cls
  66. echo 4.) What was the first ever swordfighting
  67. echo game made?
  68. echo 1. King of the Hill
  69. echo 2. Sword Fight on the Heights Original
  70. choice /c 12 /n
  71. if %errorlevel%==1 goto wrong
  72. if %errorlevel%==2 goto question5
  73. :question5
  74. cls
  75. color %chkp%
  76. echo 5.) Who made Kohls Admin Commands?
  77. echo 1. Person299
  78. echo 2. Kohltastrophe
  79. choice /c 12 /n
  80. if %errorlevel%==1 goto wrong
  81. if %errorlevel%==2 goto question6
  82. :question6
  83. cls
  84. color %fcolor%
  85. echo You have reached the end of the game.
  86. echo More questions will come soon!
  87. echo Press any key to exit.
  88. pause >nul
  89. exit
Advertisement
Add Comment
Please, Sign In to add comment