Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1. puts "You wake up cold, alone, and uninjured in a pitch black cave"
  2. puts "What do you want to do?"
  3. puts "Options: look around, cry, stay still and listen"
  4. option = gets.chomp
  5. case option
  6.  
  7. when "look around"
  8. puts "...it's a dark cave."
  9. puts "Now what?: Lay down and die, feel the walls, sit and listen"
  10. now_what = gets.chomp
  11.  
  12. case now_what
  13. when "lay down and die"
  14. puts "Wow what a loser. You die. The end"
  15. when "feel the walls"
  16. puts "After some scratched palms and bruised pride you feel a tunnel entrance"
  17. puts "Next?: Stay put, follow the tunnel"
  18. and_then = gets.chomp
  19. case and_then
  20. when "stay put"
  21. puts "you eventually starve and die. The End."
  22. when "follow the tunnel"
  23. puts "After an hour of feeling your way around the walls and bumping into stelagmites you emerge battered and bruised into a forrest."
  24. puts "Next?: Stay put, follow the tunnel"
  25. and_then = gets.chomp
  26. case and_then
  27. when "stay put"
  28. puts "Congrats, you got out of the cave but still died."
  29. when "start walking"
  30. puts "It takes a few hours but you make it to the road and get a ride back to town. YOu still have no idea how you got into the cave."
  31. end
  32. end
  33. end
  34. when "sit and listen"
  35. puts "You hear water dripping from the left."
  36. puts "Follow the sound or stay?"
  37. next_option = gets.chomp
  38. case next_option
  39. when "Follow the sound"
  40. puts "You walk to the left with your hands out until you brush the wall, a few inches from your fingers is the start of a tunnel."
  41. puts "Next?: Stay put, follow the tunnel"
  42. and_then = gets.chomp
  43. case and_then
  44. when "stay put"
  45. puts "you eventually starve and die. The End."
  46. when "follow the tunnel"
  47. puts "After an hour of feeling your way around the walls and bumping into stelagmites you emerge battered and bruised into a forrest."
  48. puts "Next?: Stay put, start walking"
  49. and_then = gets.chomp
  50. case and_then
  51. when "stay put"
  52. puts "Congrats, you got out of the cave but still died."
  53. when "start walking"
  54. puts "It takes a few hours but you make it to the road and get a ride back to town. YOu still have no idea how you got into the cave."
  55. end
  56. end
  57. when "stay"
  58. puts "You stay in the cave and die all alone."
  59. end
  60.  
  61.  
  62.  
  63. when "cry"
  64. puts "Now what's that going to accomplish?"
  65. puts "Now what?: Lay down and die, feel the walls, sit and listen"
  66. now_what = gets.chomp
  67.  
  68. case now_what
  69. when "lay down and die"
  70. puts "Wow what a loser. You die. The end"
  71. when "feel the walls"
  72. puts "After some scratched palms and bruised pride you feel a tunnel entrance"
  73. puts "Next?: Stay put, follow the tunnel"
  74. and_then = gets.chomp
  75. case and_then
  76. when "stay put"
  77. puts "you eventually starve and die. The End."
  78. when "follow the tunnel"
  79. puts "After an hour of feeling your way around the walls and bumping into stelagmites you emerge battered and bruised into a forrest."
  80. puts "Next?: Stay put, start walking"
  81. and_then = gets.chomp
  82. case and_then
  83. when "stay put"
  84. puts "Congrats, you got out of the cave but still died."
  85. when "start walking"
  86. puts "It takes a few hours but you make it to the road and get a ride back to town. YOu still have no idea how you got into the cave."
  87. end
  88. end
  89. end
  90. when "stay still and listen"
  91. puts "You hear water dripping from the left."
  92. puts "Next?: Stay put, follow the tunnel"
  93. and_then = gets.chomp
  94. case and_then
  95. when "stay put"
  96. puts "you eventually starve and die. The End."
  97. when "follow the tunnel"
  98. puts "After an hour of feeling your way around the walls and bumping into stelagmites you emerge battered and bruised into a forrest."
  99. puts "Next?: Stay put, start walking"
  100. and_then = gets.chomp
  101. case and_then
  102. when "stay put"
  103. puts "Congrats, you got out of the cave but still died."
  104. when "start walking"
  105. puts "It takes a few hours but you make it to the road and get a ride back to town. YOu still have no idea how you got into the cave."
  106. end
  107. end
  108. else
  109. puts "You've got to do something or you'll die here."
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement