Advertisement
Guest User

codey code

a guest
Nov 15th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. #print("===You are in the PLACENAME===")
  2. #print("DESCRIPTION1")
  3. #print("DESCRIPTION2")
  4. #print("Press W to go to ...")
  5. #VARIABLENAME = input()
  6. #if VARIABLENAME == 'W' or 'w':
  7. #else:
  8. # print("Invalid Input")
  9.  
  10.  
  11. def Bedroom():
  12. print("===You are in your bedroom===")
  13. print("There is your bed, a few edgy posters on the walls and the door to the living room")
  14. print("press W to go into the living room")
  15. mooving = input()
  16. if mooving == 'w' or 'W':
  17. LivingRoom()
  18. elif mooving == 'E' or 'e':
  19. for i in range(1,20):
  20. print("Nico nico nii")
  21.  
  22.  
  23. def LivingRoom():
  24. print("===You are in the living room===")
  25. print("There is a table in the middle of the room, a sofa behind it and a TV in front. There are also massive glass doors next to you that lead to the garden")
  26. print("Mum: \"What are you doing here? Get changed or you'll be late to school")
  27. print("You go to back to your room and get changed, but by the time your finished you didn't have time for breakfast so you go to school hungry")
  28. print ("press R to go to school")
  29. thelaw = input()
  30. if thelaw == 'R' or 'r':
  31. Classroom()
  32.  
  33. else:
  34. print("Invalid input")
  35. LivingRoom()
  36.  
  37. def Classroom():
  38. print("===You are in the classroom===")
  39. print("You arrive at school but it turns out your clock was an hour ahead, so you have to wait by yourself outside of your classroom for an entire hour")
  40. print("Someone walks by and calls you a nerd")
  41. print ("===school starts===")
  42. print("You're the first one to go into the class, and you fall over")
  43. print("you whisper to yourself, \"curse you league of supervillians!\"")
  44. print("An hour passes, and now its breaktime")
  45. print("Press
  46.  
  47. def Hallway():
  48. print ("===You are in the school hallway===")
  49. print("There are doors leading to other classes and lockers")
  50. print("At the end of the hallway there is the enterance to the playground")
  51. print("Press W to go to the playground")
  52. yoinkers = input()
  53.  
  54. if yoinkers == 'W' or 'w':
  55. Hallway()
  56.  
  57. else:
  58. print("Invalid Input")
  59.  
  60.  
  61.  
  62.  
  63. Bedroom()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement