Advertisement
Joe_McBobski

SCP 682 Dating Simulator

Jun 22nd, 2012
996
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.64 KB | None | 0 0
  1. # SCP 682 Dating Simulator
  2. # To run you must have python (You don't say?)
  3.  
  4. from sys import exit
  5. def begin():
  6.     print "================================\nSCP 682 Dating Sim\n================================"
  7.     print "\tDifficulties: Easy, Medium, Hard."
  8.     difficulty = raw_input("> ")
  9.     print "\tNow initiating %s difficulty." % difficulty
  10.     print "\tYou approach SCP 682. First impressions are important! What do you do?"
  11.     raw_input("> ")
  12.     print "\t682 kills and eats you.\n\tGame Over. \n\tTry again? (y/n)"
  13.     y = raw_input("> ")
  14.     if y == "y" or y == "yes" or y == "yeah":
  15.         begin()
  16.     else:
  17.         exit
  18. begin()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement