Advertisement
baggiepr

Adventure Coding by Clarissa Y6 Orchard Lea Junior

Jan 29th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.43 KB | None | 0 0
  1. from time import sleep
  2. wackypoints=100
  3. expiriance=0
  4. print("""
  5.        welcome to the new years
  6.        party
  7.        """)
  8. input("\nPress the enter key to continue")
  9. name=input("what is the name of your charicter?")
  10. print("lets have fun at the new years eve party",name)
  11.  
  12. print("""
  13.        you have dressed up in your best onezy and somone wrips the hood of it
  14.         then throghs it in the river while the tide is going out
  15.         """)
  16. sleep(10.0)
  17. event1=input("type l to ignore or n to dive in and get it")
  18. if event1=="l":
  19.     print ("you make freinds and ignore it ")
  20.     wackypoints=wackypoints+11
  21.     expiriance=expiriance+11
  22. else:
  23.     print("you dived in and cout your hood")
  24.     wackypoints=wackypoints+11
  25.     expiriance=expiriance+11
  26. print("you have ",wackypoints,"wackypointsand",expiriance,"expiriance")
  27. sleep(10.0)
  28. print("""
  29.        you slowly come across somone wearing the same onzy as you
  30.        """)
  31. event2=input("type l to steel theres or n to complament them")
  32. if event1=="l":
  33.     print ("you steel there outfit ")
  34.     wackypoints=wackypoints+11
  35.     expiriance=expiriance+11
  36. else:
  37.     ("you have decided to complement them")
  38.     wackypoints=wackypoints+10
  39.     expiriance=expiriance+1
  40. print("you have ",wackypoints,"wackypointsand",expiriance,"expiriance")
  41. sleep(10.0)
  42. print("""
  43.        you sloly walk along the beach and some boys chat you up""")
  44. event3=input("type l to make freinds or n to ask them out")
  45. if event1=="l":
  46.     print ("you make freinds  ")
  47.     wackypoints=wackypoints+11
  48.     expiriance=expiriance+11
  49.  
  50. else:
  51.     ("you asked the boys out")
  52.     wackypoints=wackypoints+11
  53.     expiriance=expiriance+11
  54. print("""
  55.        you go home because you are fed up with what you are wearing""")
  56. event4=input("type l to put on a dress or n to put on a pinaform")
  57. if event1=="l":
  58.     print("you have put on a dress and gone back to the party")
  59.     wackypoints=wackypoints+11
  60.     expiriance=expiriance+11
  61. else:
  62.     ("you have put on a pinaform and have gone to the party ")
  63.     wackypoints=wackypoints-11
  64.     expiriance=expiriance+11
  65. print("""
  66.        you  go back to the party and find your boy friend kissing your enamy""")
  67. event5=input("type l to ask his friend out or n to egnore it")
  68. if event1=="l":
  69.     print("you have asked his best friend out and he is furios ")
  70.     wackypoints=wackypoints -12
  71.     expiriance=expiriance +25
  72. print ("""
  73.        you have gone home thank you for playing""")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement