Guest User

Untitled

a guest
Mar 15th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.89 KB | None | 0 0
  1. import os
  2. import time
  3.  
  4. def loading_screen():
  5. print("May 7th 2020")
  6. time.sleep(5)
  7. print("Loading...")
  8. time.sleep(4)
  9. print("Loading Complete")
  10. start()
  11.  
  12. def start():
  13. time.sleep(2)
  14. print("Server Offline")
  15. time.sleep(5)
  16. print("Rebooting.......")
  17. time.sleep(5)
  18. print("Reboot Unsuccessful")
  19. time.sleep(5)
  20. reboot = input("Reboot[]")
  21. reboot = reboot.lower()
  22. if reboot == 'Yes':
  23. print("Rebooting.......")
  24. time.sleep(5)
  25. print("Reboot Successful")
  26. main()
  27. else:
  28. print("Try Again")
  29. start()
  30.  
  31. def main():
  32. time.sleep(3)
  33. print("nNotesnCIA Login")
  34. bootup = input()
  35. bootup = bootup.lower()
  36. if bootup == 'Notes':
  37. notes()
  38.  
  39. elif bootup == 'CIA Login':
  40. cia_login()
  41.  
  42. def cia_login():
  43. time.sleep(3)
  44. user = input("Username:")
  45. time.sleep(4)
  46. password = input("Password:")
  47.  
  48. if user == 'Project321' and password == 'Password321':
  49. print("Login Successful")
  50. time.sleep(4)
  51. print("Welcome Dr Jones")
  52. cia_main()
  53. else:
  54. print("Try Again!")
  55. cia_login()
  56.  
  57. def notes():
  58. time.sleep(5)
  59. print("Loading Files......")
  60. time.sleep(5)
  61. print("Loading Successful")
  62. time.sleep(5)
  63. print("Error Files May Be Corrupt")
  64. time.sleep(5)
  65. print('''nFiles:nMay 7th 2020nMay 3rd 2020nApril 28th 2020nApril 20th 2020nApril 10th 2020nDecember 28th 2003
  66. nDecember 3rd 2003
  67. nSeptember 1st 2003nDecember 6th 1999''')
  68. file = input()
  69. file = file.lower()
  70.  
  71. if file == 'May 7th 2020':
  72. time.sleep(5)
  73. print("File Unreadable")
  74. notes()
  75. elif file == 'May 3rd 2020':
  76. may_3rd_2020()
  77. elif file == 'April 28th 2020':
  78. time.sleep(5)
  79. print("File Unreadable")
  80. notes()
  81. elif file == 'April 20th 2020':
  82. april_20th_2020()
  83. elif file == 'April 10th 2020':
  84. april_10th_2020()
  85. elif file == 'December 28th 2003':
  86. time.sleep(5)
  87. print("File Unreadable")
  88. notes()
  89. elif file == 'December 3rd 2003':
  90. december_3rd_2003()
  91. elif file == 'September 1st 2003':
  92. september_1st_2003()
  93. elif file == 'December 6th 1999':
  94. time.sleep(5)
  95. print("File Unreadable")
  96. notes()
  97.  
  98.  
  99. def september_1st_2003():
  100. time.sleep(3)
  101. print("Loading Voice Recording May 3rd 2020...")
  102. time.sleep(5)
  103. print('''I have no idea what it going on, the infected (some call him Password321) keeps screaming something.
  104. Something like "Your all going to die...its coming for you...RUN" I can hear it
  105. in my head, something isnt getting told to us.
  106.  
  107. I will get back later i think there suspecting something....''')
  108. time.sleep(4)
  109. print("Voice Recoding Finished")
  110. notes()
  111.  
  112.  
  113. def december_3rd_2003():
  114. time.sleep(3)
  115. print("Loading Voice Recording December 3rd 2003...")
  116. time.sleep(5)
  117. print('''The infected is gone...we have been looking for him there are no signs of
  118. him except of the screaming in my head, in dreams I can see him telling me something
  119. but i can't hear him im going crazy and am not the only one last night we could hear
  120. him and hear someone or something banging something agents the pipes.
  121.  
  122. I need to get out of here............................I cant stay...''')
  123. time.sleep(4)
  124. print("Voice Recording Finished")
  125. notes()
  126.  
  127.  
  128. def april_10th_2020():
  129. time.sleep(3)
  130. print("Loading Voice Recording April 10th 2020...")
  131. time.sleep(5)
  132. print('''.......................................
  133. .....................**heavily breathing**..........
  134. there coming for you...........................
  135. ....................run...........................
  136. ..........**woman screaming**''')
  137. time.sleep(4)
  138. print("Voice Recording Finished")
  139. notes()
  140.  
  141.  
  142. def april_20th_2020():
  143. time.sleep(3)
  144. print("Loading Voice Recording April 20th 2020...")
  145. time.sleep(5)
  146. print('''They told us what the virus is called...**crying starts** its the
  147. virus that killed my family i thought it was gone.....I heard someone i my room
  148. and a woman screaming it was rebeca shes dead......
  149.  
  150. I need to escape, there not letting us go i don't know why I just want to go home
  151. ................................................Project321...Project321.........
  152. .......**Gun shot**.............................................................''')
  153. time.sleep(4)
  154. print("Voice Recording Finished")
  155. notes()
  156.  
  157.  
  158. def may_3rd_2020():
  159. time.sleep(3)
  160. print("Loading Voice Recording May 3rd 2020...")
  161. time.sleep(5)
  162. print('''....................................................................
  163. ..................................................................................
  164. ..................................................................................
  165. .......................................................................Project321....''')
  166. time.sleep(4)
  167. print("Voice Recording Finished")
  168. notes()
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178. loading_screen()
Add Comment
Please, Sign In to add comment