Skip to content

Instantly share code, notes, and snippets.

@mlabisi
Created April 5, 2016 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlabisi/1d63b3776556786e6b47af3e74c47a09 to your computer and use it in GitHub Desktop.
Save mlabisi/1d63b3776556786e6b47af3e74c47a09 to your computer and use it in GitHub Desktop.
puts "\n"
puts "\n"
puts "\n"
puts "Welcome to the Ultimate Harmonizer Adventure! Will you be able to find Fifth Harmony?"
puts "\n"
puts "REMEMBER: All of your answers must be numbers!"
puts "Press [ENTER] to begin!"
$stdin.gets.chomp
puts "What's your name?"
name = $stdin.gets.chomp
puts "\n"
puts "#{name}, you are on vacation in Hawaii and are looking for your hotel room."
puts "After taking the elevator all the way to the 8th floor, you realize that you forgot you room number!"
puts "It's either room 899 or 866. Which do you choose?"
print ">"
room = $stdin.gets.chomp
puts "\n"
if room == "899"
puts "You open the door to find Bryan Lanning forcing Oliver Lanning to eat the complementary gummy bears provided by the hotel while shoving a camera in the poor boy's face."
puts "What do you do?"
puts "1. Tell him to stop forcing his son to do stuff in order to get more views."
puts "2. Join in the fun and shove gummy bears in your mouth as well."
puts "3. RUN OUT OF THERE!"
print ">"
answer = $stdin.gets.chomp
if answer == "1"
puts "Bryan calls security and you are banned from Hawaii after he puts you on blast on his twitter."
puts "\n"
puts "Sorry #{name}. You didn't get to meet Fifth Harmony :/"
elsif answer == "2"
puts "Bryan and Oliver are creeped out at first, but then decide to put you in the vlog for more views."
puts "\n"
puts "That was cool, but you didn't get to meet Fifth Harmony. Sorry #{name} :/"
else
puts "You run out, but Bryan caught you on camera. He uploads the vlog and you are made fun of by the Daily Bumps fans."
puts "\n"
puts "Sorry #{name}. You didn't get to meet Fifth Harmony :/"
end
elsif room == "866"
puts "You open the door and see the girls of Fifth Harmony chilling in what turns out to be their hotel room!"
puts "You..."
puts "1. Tell Camila she's a flop and tell her she sucks for trying to go solo."
puts "2. Take a selfie with Dinah and Ally."
puts "3. Have a twerk-off with Lauren and Normani."
puts "4. Absolutely nothing."
print ">"
decision = $stdin.gets.chomp
if decision == "1"
puts "Camila calls Taylor Swift and tells her to publicly humiliate you and your whole family."
puts "\n"
puts "Great, #{name}. Now Fifth Harmony hates you. And they blocked you on twitter :/"
elsif decision == "2"
puts "Dinah and Ally post the picture on twitter and follow you on all of your social media."
puts "\n"
puts "The girls love you! Good job, #{name}!"
elsif decision == "3"
puts "Lauren and Normani get too into the twerk off and sprain their booties. They won't be able to perform for THREE WHOLE MONTHS thanks to you."
puts "\n"
puts " Good job, #{name}. Now all of the Harmonizers hate you."
elsif decision != "1" || decision != "2" || decision != "3"
puts "You can't help but stand there and stare at the beauty that is Fifth Harmony."
puts "Unfortunately, they never notice you. Big Rob does, however, and he carries you out of the doorway, leaving you never to be seen by the girls."
puts "\n"
puts "Well #{name}, you just missed your chance of meeting Fifth Harmony :/"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment