Offlineacc

TTI.u.ooxu

Jan 16th, 2021 (edited)
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 3.19 KB | None | 0 0
  1. @echo off
  2.  
  3. title SHOCKING QUIZ
  4. echo -------------------
  5. echo EAT Games present's
  6. echo -------------------
  7. echo.
  8. echo SHOCKING QUIZ
  9. echo by sahil
  10. color 2
  11. echo.
  12. pause
  13. cls
  14.  
  15. :one
  16. color 3
  17. echo WeLcOmE
  18. echo.
  19. echo TO start game type A and press enter.
  20. echo.
  21. echo To see instructions type B and press enter.
  22. echo.
  23. echo TO quit type C and press enter.
  24. echo.
  25. set /p y=What you want to do?:
  26. if %y%== a goto two
  27. if %y%== b goto three
  28. if %y%== c goto quit
  29. goto quit
  30.  
  31. :three
  32. cls
  33. color e
  34. echo INSTRUCTIONS
  35. echo.
  36. echo 1)no cheating
  37. echo.
  38. echo 2)five question will come to you,every right answer will unlock second question.
  39. echo.
  40. echo 3)if any wrong answer you will be out of the game.
  41. echo.
  42. echo 4)when a question comes to you their are four options (A,B,C and D)
  43. echo   if answer is 'A' of given question then type 'A' and press enter.
  44. echo.
  45. pause
  46. cls
  47. echo To play game type 1 and press enter
  48. echo.
  49. set /p num=COMMAND:
  50. if %num%== 1 goto two
  51. goto quit
  52.  
  53. :two
  54. cls
  55. color f
  56. echo Are you ready to play.....
  57. echo.
  58. pause
  59. cls
  60. echo 1)When Neil Armstrong landed on moon which foot did he step first?
  61. echo.
  62. echo a)Left
  63. echo b)Right
  64. echo c)Both legs at a time
  65. echo d)He dosent have legs
  66. echo.
  67. set/p ans=ANSWER:
  68. if %ans%== a goto fourth
  69. if %ans%== b goto wrong
  70. if %ans%== c goto wrong
  71. if %ans%== d goto wrong
  72. goto quit
  73.  
  74. :wrong
  75. cls
  76. color 4
  77. echo SORRY!! you have given wrong answer.
  78. pause
  79. goto quit
  80.  
  81. :fourth
  82. echo.
  83. echo CONGRATULATION..
  84. echo You have unlocked second question
  85. echo.
  86. pause
  87. cls
  88. echo 2)Who invented FACEBOOK?
  89. echo.
  90. echo a)Bill Gates
  91. echo b)Steve Jobs
  92. echo c)Mark Zukerberg
  93. echo d)Jhon Zukerberg
  94. echo.
  95. set/p ans=ANSWER:
  96. if %ans%== a goto wrong
  97. if %ans%== b goto wrong
  98. if %ans%== c goto fifth
  99. if %ans%== d goto wrong
  100. goto quit
  101.  
  102. :fifth
  103. echo.
  104. echo CONGRATULATION..
  105. echo You have unlocked third question
  106. echo.
  107. pause
  108. cls
  109. echo 3)Which was first advanced humanoid robo?
  110. echo.
  111. echo a)Asimo
  112. echo b)Electro
  113. echo c)NAO
  114. echo d)Humbo
  115. echo.
  116. set/p ans=ANSWER:
  117. if %ans%== a goto wrong
  118. if %ans%== b goto sixth
  119. if %ans%== c goto wrong
  120. if %ans%== d goto wrong
  121. goto quit
  122.  
  123. :sixth
  124. echo.
  125. echo CONGRATULATION..
  126. echo You have unlocked fourth question
  127. echo this is slightly hard
  128. echo.
  129. pause
  130. cls
  131. echo 4)What was the name of first plane made by Wright Brothers?
  132. echo.
  133. echo a)Eagle
  134. echo b)Air Winger
  135. echo c)Wright's
  136. echo d)Flyer
  137. echo.
  138. set/p ans=ANSWER:
  139. if %ans%== a goto wrong
  140. if %ans%== b goto wrong
  141. if %ans%== c goto wrong
  142. if %ans%== d goto seventh
  143. goto quit
  144.  
  145. :seventh
  146. cls
  147. echo.
  148. echo CONGRATULATION..
  149. echo.
  150. echo You have unlocked last question of the game
  151. echo.
  152. echo.You are one step away from being WINNER.
  153. echo.
  154. echo are you READY TO PLAY...
  155. echo.
  156. pause
  157. cls
  158. echo 5)Which is one and only one mammal that lay egg?
  159. echo.
  160. echo a)Autumpus
  161. echo b)Playtipus
  162. echo c)Whale
  163. echo d)Congo
  164. echo.
  165. set/p ans=ANSWER:
  166. if %ans%== a goto wrong
  167. if %ans%== b goto correct
  168. if %ans%== c goto wrong
  169. if %ans%== d goto wrong
  170. goto quit
  171.  
  172. :correct
  173. cls
  174. start sahil.jpg
  175. pause
  176. echo Cerdits...
  177. echo.
  178. echo thank you for playing this game
  179. echo.
  180. echo Game made by Sahil Kore
  181. echo For any details  email me on 'sahilkore@gmail.com'
  182. echo.
  183. echo.
  184. pause
  185. goto quit
Add Comment
Please, Sign In to add comment