Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.71 KB | None | 0 0
  1. redo = False
  2. reminder = True
  3. spam = True
  4. secret = False
  5. import time
  6. username1 = "tim"
  7. password1 = "p"
  8. log = "logoff"
  9. msg = "message me"
  10. hi = "hi"
  11. bye = "bye"
  12. name = "what is my name?"
  13. yes = "yes"
  14. no = "no"
  15. catmeme = "cat meme"
  16. potato = "kawaii potato"
  17. c = "enter"
  18. ca = "cancel"
  19. gomad = "go mad"
  20. info1 = "1"
  21. info2 = "2"
  22. info3 = "3"
  23. infoded = "stop"
  24. showpassword = "show username & password" or "show username and password"
  25. showinfo = "show secret info"
  26. pointlessr = "pointless reminders"
  27. setreminder = "set a reminder"
  28. checkreminder = "check your reminders"
  29. remind5 = "5s"
  30. remind10 = "10s"
  31.  
  32.  
  33. #For all the dumb people, the username and password to login are as follows:
  34. #Username: Tim
  35. #Password: p
  36.  
  37.  
  38. print("""
  39. |_ _| _ __ ___ _ __ ___ ___ | |_ (_) __ __ ___ _ __
  40. | | | '_ \ / __| | '_ \ / _ \ / __| | __| | | \ \ / / / _ \ | '__|
  41. | | | | | | \__ \ | |_) | | __/ | (__ | |_ | | \ V / | __/ | |
  42. |___| |_| |_| |___/ | .__/ \___| \___| \__| |_| \_/ \___| |_|
  43. |_| """)
  44.  
  45.  
  46. username = input("Please enter your username: ")
  47. if username.lower() == username1:
  48. time.sleep(0.5)
  49. print("Attempting to access the database...")
  50. time.sleep(0.5)
  51. print("Database accessed...")
  52. time.sleep(1)
  53. print("Retrieving data...")
  54. time.sleep(1.5)
  55. print("Username accepted.")
  56. else:
  57. time.sleep(0.5)
  58. print("Attempting to access the database...")
  59. time.sleep(0.5)
  60. print("Database accessed...")
  61. time.sleep(1)
  62. print("Retrieving data...")
  63. time.sleep(1.5)
  64. print("Username denied. The program will now terminate itself.")
  65. exit()
  66. password = input("Please enter your password: ")
  67. if password.lower() == password1:
  68. time.sleep(0.5)
  69. print("Attempting to access the database...")
  70. time.sleep(0.5)
  71. print("Database accessed...")
  72. time.sleep(1)
  73. print("Retrieving data...")
  74. time.sleep(1.5)
  75. print("Password accepted.")
  76. else:
  77. time.sleep(0.5)
  78. print("Attempting to access the database...")
  79. time.sleep(0.5)
  80. print("Database accessed...")
  81. time.sleep(1)
  82. print("Retrieving data...")
  83. time.sleep(1.5)
  84. print("Password denied. The program will now terminate itself.")
  85. exit()
  86.  
  87. secretinfo1 = input("Please enter the 1st number of your secret info: ")
  88. secretinfo2 = input("Please enter the 2nd number of your secret info: ")
  89. secretinfo3 = input("Please enter the 3rd number of your secret info: ")
  90. if secretinfo1.lower() != info1 or secretinfo2.lower() != info2 or secretinfo3.lower() != info3:
  91. print("One of your secret info's was incorrect. The program wil terminate itself in 2 seconds.")
  92. time.sleep(2)
  93. exit()
  94. elif secretinfo1.lower() == info1 and secretinfo2.lower() == info2 and secretinfo3.lower() == info3:
  95. pass
  96.  
  97.  
  98. print("Welcome", username1,)
  99. while redo == False:
  100. dowhat = input("What would you like to do: LogOff, Message Me, Cat Meme, Kawaii Potato, Pointless Reminders, Go Mad, Show Username & Password, Show Secret Info: ")
  101.  
  102. if dowhat.lower() == potato:
  103. print("Ha! My personal favourite: https://goo.gl/mtw4M3 ")
  104. time.sleep(0.5)
  105. print("Enjoy.. lol")
  106. print("Sending you back to the main menu in 3seconds.")
  107. time.sleep(3)
  108. redo = False
  109.  
  110. if dowhat.lower() == catmeme:
  111. print("Let me have a look...")
  112. time.sleep(3)
  113. print("Ah! Finally found one you may like...")
  114. time.sleep(1)
  115. print("Now where did I put the link...")
  116. time.sleep(1)
  117. print("Ah, found it: https://goo.gl/3969YY ")
  118. time.sleep(0.6)
  119. print("Enjoy lol")
  120. print("Sending you back to the main menu in 3seconds.")
  121. time.sleep(3)
  122. redo = False
  123.  
  124. if dowhat.lower() == showinfo:
  125. print("Finding your secret info...")
  126. time.sleep(2)
  127. print("Your secret info1 is", info1)
  128. time.sleep(0.7)
  129. print("Your secret info2 is", info2)
  130. time.sleep(0.7)
  131. print("Your secret info3 is", info3)
  132. print("Sending you back to the main menu in 3seconds.")
  133. time.sleep(3)
  134. redo = False
  135.  
  136. if dowhat.lower() == showpassword:
  137. print("Finding your username & password...")
  138. time.sleep(2)
  139. print("Your username is:", username1)
  140. print("Your password is:", password1)
  141. print("Sending you back to the main menu in 3seconds.")
  142. time.sleep(3)
  143. redo = False
  144.  
  145.  
  146. if dowhat.lower() == msg:
  147. print("Say one of the following, and I will reply to you...")
  148. speak = input("You can say: hi, what is my name?, and bye: ")
  149. if speak.lower() != hi and speak.lower() != bye and speak.lower() != name:
  150. print("Please enter a valid command next time.")
  151. print("Sending you back to the main menu in 3seconds.")
  152. redo = False
  153. elif speak.lower() == hi:
  154. print("Hello")
  155. print("Sending you back to the main menu in 3seconds.")
  156. time.sleep(3)
  157. redo = False
  158. elif speak.lower() == bye:
  159. print("Cya!")
  160. print("Sending you back to the main menu in 3seconds.")
  161. time.sleep(3)
  162. redo = False
  163. elif speak.lower() == name:
  164. print("Your name is", username, "and you should know that you idiot!")
  165. print("Sending you back to the main menu in 3seconds.")
  166. time.sleep(3)
  167. redo = False
  168. else:
  169. pass
  170.  
  171. if dowhat.lower() == log:
  172. print("Are you sure you want to terminate the program?")
  173. terminate = input("yes/no: ")
  174. if terminate.lower() == yes:
  175. redo = True
  176. exit()
  177. else:
  178. print("Ok, terminating cancelled.")
  179. print("Sending you back to the main menu in 3seconds.")
  180. time.sleep(3)
  181. redo = False
  182. else:
  183. pass
  184.  
  185. if dowhat.lower() == pointlessr:
  186. print("Note: if you haven't set a reminder previosuly this session, the check your reminders option will not work, and I can't work out how to tell you that if you do type it. Anyway if you want a nice big red error go for it...")
  187. time.sleep(2)
  188. rdowhat = input("What would you like to do? 'set a reminder' or 'check your reminders': ")
  189. if rdowhat.lower() == setreminder:
  190. remindme = input("Please enter what you would like to be reminded of: ")
  191. timedelay = input("Please enter the delay before we remind you. It can only be 5s or 10s, which is why it is pointless. Please put the s next to the number to: ")
  192. if timedelay == remind5:
  193. print("We will remind you to", remindme,"in", timedelay,"Please don't go anywhere!")
  194. time.sleep(5)
  195. print("You wanted us to remind you:", remindme)
  196. print("Thankyou for using pointless-remind, sending you back to the main menu in 3 seconds.")
  197. time.sleep(3)
  198. redo = False
  199. reminder = True
  200. elif timedelay == remind10:
  201. print("We will remind you to", remindme,"in", timedelay,"Please don't go anywhere!")
  202. time.sleep(10)
  203. print("You wanted us to remind you:", remindme)
  204. print("Thankyou for using pointless-remind, sending you back to the main menu in 3 seconds.")
  205. time.sleep(3)
  206. redo = False
  207. reminder = True
  208.  
  209. if rdowhat.lower() == checkreminder and reminder == True:
  210. print("Checking to see if you have any previous reminders...")
  211. time.sleep(1)
  212. print("Your reminder:", remindme)
  213. time.sleep(1)
  214. print("Sending you back to the main menu in 3 seconds.")
  215. time.sleep(3)
  216. redo = False
  217. else:
  218. print("No current reminders")
  219. print("Sending you back to the main menu in 3 seconds.")
  220. time.sleep(3)
  221. redo = False
  222.  
  223.  
  224.  
  225. if dowhat.lower() == gomad:
  226. forceclose = input("Are you sure you want to do this? It will never end, and you will have to force close the program! yes/no: ")
  227. if forceclose.lower() == no:
  228. print("Thankgod, I was panacking!")
  229. time.sleep(0.7)
  230. print("Sending you back to the main menu in 3seconds.")
  231. time.sleep(3)
  232. elif forceclose.lower() == yes:
  233. print("The maddness will start in 5 seconds!")
  234. time.sleep(1)
  235. print("The maddness will start in 4 seconds!")
  236. time.sleep(1)
  237. print("The maddness will start in 3 seconds!")
  238. time.sleep(1)
  239. print("The maddness will start in 2 seconds!")
  240. time.sleep(1)
  241. print("The maddness will start in 1 second, PREPARE YOURSELF!")
  242. time.sleep(1)
  243. while spam == True:
  244. print("This is going to get on your nerves!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement