Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. @echo off
  2. :a
  3. color 1c
  4. title Adventure
  5. echo What up boi
  6. pause
  7. echo oh you typed a key
  8. pause
  9. echo ok cool
  10. echo more lines
  11. pause
  12. echo let's get rid of the stuff at the top...
  13. pause
  14. cls
  15. pause
  16. echo I have a feeling you're skipping this text...
  17. pause
  18. cls
  19. echo then press %RANDOM% to continue!
  20. pause
  21. echo haha tricked!
  22. pause
  23. echo want to hear some facts?
  24. start thetruth.txt
  25. pause
  26. echo let's try something real quick!
  27. pause
  28. cls
  29. pause
  30. color 0a
  31. echo that's much better!
  32. :arrg
  33. pause
  34. echo type 1 to pass and 2 to not
  35. set /p car=
  36. if %car% == 1 goto hi
  37. if %car% == 2 goto no
  38. :hi
  39. echo hello you made it
  40. pause
  41. goto vv
  42. :no
  43. echo what why
  44. pause
  45. goto arrg
  46. :vv
  47. echo why did i spend so much time on this
  48. pause
  49. echo I know!
  50. echo whats my favourite color!
  51. :memes
  52. set /p rick=
  53. if %rick% == blue goto ffff
  54. if %rick% == ajiscool goto secret
  55. goto glhf
  56. :ffff
  57. pause
  58. echo nice one
  59. goto nice
  60. :glhf
  61. pause
  62. echo WRONG
  63. goto memes
  64. :secret
  65. pause
  66. echo SHHHH!
  67. goto memes
  68. nice:
  69. pause
  70. echo what now...
  71. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement