Advertisement
Guest User

Untitled

a guest
May 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.49 KB | None | 0 0
  1. import random
  2. numers = ["Delivery to Oxford Circus", "Delivery to Mension", "Delivery to Buckingham", "Delivery to Green Street",
  3. 'Delivery to Leicester Square', "Delivery to Baker Street", "Delivery to Old Street", "Delivery to Waterloo",
  4. 'Delivery to Westminster']
  5.  
  6. random_district = 0
  7. money = 0
  8. while True:
  9. print(""" MENU
  10. PLAY
  11. QUIT""")
  12. command_menu = input(">").lower()
  13. #wybór shop/work
  14. while command_menu == "play":
  15. print("1 - GO TO SHOP")
  16. print("2 - GO TO WORK")
  17. print("3 - BALANCE")
  18. print("4 - BACK")
  19. command_play = input(">").lower()
  20. if command_play == "4":
  21. break
  22. elif command_play == "3":
  23. print(f"YOUR BALANCE: {money}$")
  24. elif command_play == "2":
  25. print("""1 - PIZZA DELIVERY
  26. 2 - SELLING DRUGS""")
  27. command_work = input(">")
  28. # work
  29. output = []
  30. ilosc_szukan = 0
  31. while ilosc_szukan <= 2:
  32. number = str(random.randrange(0, 8))
  33. ilosc_szukan += 1
  34. output.append(numers[int(number)])
  35. print("1. " + output[0])
  36. print("2. " + output[1])
  37. print("3. " + output[2])
  38.  
  39. command_wybor = input(">")
  40. if command_wybor == "1":
  41. if output[0] == numers[0]:
  42. tip = random.randrange(1, 8)
  43. hajs_zlecenie = random.randrange(5, 9)
  44. money += tip + hajs_zlecenie
  45. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  46. if output[0] == numers[1]:
  47. tip = random.randrange(1, 9)
  48. hajs_zlecenie = random.randrange(6, 11)
  49. money += tip + hajs_zlecenie
  50. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  51. if output[0] == numers[2]:
  52. tip = random.randrange(4, 20)
  53. hajs_zlecenie = random.randrange(8, 14)
  54. money += tip + hajs_zlecenie
  55. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  56. if output[0] == numers[3]:
  57. tip = random.randrange(1, 5)
  58. hajs_zlecenie = random.randrange(10, 17)
  59. money += tip + hajs_zlecenie
  60. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  61. if output[0] == numers[4]:
  62. tip = random.randrange(4, 20)
  63. hajs_zlecenie = random.randrange(12, 18)
  64. money += tip + hajs_zlecenie
  65. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  66. if output[0] == numers[5]:
  67. tip = random.randrange(4, 20)
  68. hajs_zlecenie = random.randrange(14, 19)
  69. money += tip
  70. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  71. if output[0] == numers[6]:
  72. tip = random.randrange(4, 25)
  73. hajs_zlecenie = random.randrange(16, 22)
  74. money += tip + hajs_zlecenie
  75. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  76. if output[0] == numers[7]:
  77. tip = random.randrange(4, 25)
  78. hajs_zlecenie = random.randrange(18, 24)
  79. money += tip + hajs_zlecenie
  80. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  81. if output[0] == numers[8]:
  82. tip = random.randrange(5, 30)
  83. hajs_zlecenie = random.randrange(20, 26)
  84. money += tip + hajs_zlecenie
  85. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  86.  
  87. if command_wybor == "2":
  88. if output[1] == numers[0]:
  89. tip = random.randrange(1, 8)
  90. hajs_zlecenie = random.randrange(5, 9)
  91. money += tip + hajs_zlecenie
  92. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  93. if output[1] == numers[1]:
  94. tip = random.randrange(1, 9)
  95. hajs_zlecenie = random.randrange(6, 11)
  96. money += tip + hajs_zlecenie
  97. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  98. if output[1] == numers[2]:
  99. tip = random.randrange(4, 20)
  100. hajs_zlecenie = random.randrange(8, 14)
  101. money += tip + hajs_zlecenie
  102. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  103. if output[1] == numers[3]:
  104. tip = random.randrange(1, 5)
  105. hajs_zlecenie = random.randrange(10, 17)
  106. money += tip + hajs_zlecenie
  107. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  108. if output[1] == numers[4]:
  109. tip = random.randrange(4, 20)
  110. hajs_zlecenie = random.randrange(12, 18)
  111. money += tip + hajs_zlecenie
  112. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  113. if output[1] == numers[5]:
  114. tip = random.randrange(4, 20)
  115. hajs_zlecenie = random.randrange(14, 19)
  116. money += tip
  117. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  118. if output[1] == numers[6]:
  119. tip = random.randrange(4, 25)
  120. hajs_zlecenie = random.randrange(16, 22)
  121. money += tip + hajs_zlecenie
  122. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  123. if output[1] == numers[7]:
  124. tip = random.randrange(4, 25)
  125. hajs_zlecenie = random.randrange(18, 24)
  126. money += tip + hajs_zlecenie
  127. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  128. if output[1] == numers[8]:
  129. tip = random.randrange(5, 30)
  130. hajs_zlecenie = random.randrange(20, 26)
  131. money += tip + hajs_zlecenie
  132. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  133.  
  134. if command_wybor == "3":
  135. if output[2] == numers[0]:
  136. tip = random.randrange(1, 8)
  137. hajs_zlecenie = random.randrange(5, 9)
  138. money += tip + hajs_zlecenie
  139. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  140. if output[2] == numers[1]:
  141. tip = random.randrange(1, 9)
  142. hajs_zlecenie = random.randrange(6, 11)
  143. money += tip + hajs_zlecenie
  144. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  145. if output[2] == numers[2]:
  146. tip = random.randrange(4, 20)
  147. hajs_zlecenie = random.randrange(8, 14)
  148. money += tip + hajs_zlecenie
  149. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  150. if output[2] == numers[3]:
  151. tip = random.randrange(1, 5)
  152. hajs_zlecenie = random.randrange(10, 17)
  153. money += tip + hajs_zlecenie
  154. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  155. if output[2] == numers[4]:
  156. tip = random.randrange(4, 20)
  157. hajs_zlecenie = random.randrange(12, 18)
  158. money += tip + hajs_zlecenie
  159. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  160. if output[2] == numers[5]:
  161. tip = random.randrange(4, 20)
  162. hajs_zlecenie = random.randrange(14, 19)
  163. money += tip
  164. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  165. if output[2] == numers[6]:
  166. tip = random.randrange(4, 25)
  167. hajs_zlecenie = random.randrange(16, 22)
  168. money += tip + hajs_zlecenie
  169. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  170. if output[2] == numers[7]:
  171. tip = random.randrange(4, 25)
  172. hajs_zlecenie = random.randrange(18, 24)
  173. money += tip + hajs_zlecenie
  174. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  175. if output[2] == numers[8]:
  176. tip = random.randrange(5, 30)
  177. hajs_zlecenie = random.randrange(20, 26)
  178. money += tip + hajs_zlecenie
  179. print(f"YOU HAVE EARNED: {hajs_zlecenie}$ + {tip}$ tip ")
  180.  
  181. #shop
  182. while command_play == "1":
  183. print("""Welcome in my shop! What would you like to buy?
  184. 1 - MARIHUANA
  185. 2 - SHROOMS
  186. 3 - AYAHUASCA
  187. 4 - BACK""")
  188. command = input(">")
  189. if command == "1":
  190. print("""1 - Pay 50$ - 5g
  191. 2 - Pay 20$ - 2g""")
  192. command_marihuana = input(">").lower()
  193. if command_marihuana == "1":
  194. if money <= 51:
  195. print("YOU DONT HAVE ENOUGH MONEY")
  196. elif money >= 50:
  197. print("There you go. 5g of best quality marihuana.")
  198. money -= 50
  199. print("MONEY -50$")
  200.  
  201. elif command_marihuana == "2":
  202. if money <= 21:
  203. print("YOU DONT HAVE ENOUGH MONEY")
  204. elif money >= 20:
  205. print("There you go. 2g of best ganja in town.")
  206. money -= 20
  207. print("MONEY -20$")
  208. elif command_marihuana == "fuck you":
  209. print("Get outta here man! Shit! You know what am sayin!")
  210. command_easter_egg = input(">").lower()
  211. if command_easter_egg == "gerrara here":
  212. print("YOU LEFT SHOP ALIVE...")
  213. break
  214. elif command_easter_egg == "stay":
  215. print("OWNER PULLS OUT HIS SHOTHUN AND SHOTS YOU DEAD.")
  216. print("YOU ARE DEAD AS FUCK.")
  217. print("WASTED")
  218. break
  219. elif command == "2":
  220. print("""1 - Pay 40$ - 10g
  221. 2 - Pay 25$ - 5g""")
  222. command_shrooms = input(">").lower()
  223. if command_shrooms == "1":
  224. if money <= 41:
  225. print("YOU DONT HAVE ENOUGH MONEY")
  226. elif money >= 40:
  227. print("Here you go. I've got good ones.")
  228. print("YOU HAVE BEEN GIVEN 10g OF PSILOCIBE CUBENSIS")
  229. money -= 40
  230. print("MONEY -40$")
  231.  
  232. elif command_shrooms == "2":
  233. if money <= 26:
  234. print("YOU DONT HAVE ENOUGH MONEY")
  235. elif money >= 25:
  236. print("Here you go. I've got good ones.")
  237. print("YOU HAVE BEEN GIVEN 5g OF PSILOCIBE CUBENSIS")
  238. money -= 25
  239. print("MONEY -25$")
  240.  
  241.  
  242. elif command_shrooms == "fuck you":
  243. print("Get outta here man! Shit! You know what am sayin!")
  244. command_easter_egg = input(">").lower()
  245. if command_easter_egg == "gerrara here":
  246. print("YOU LEFT SHOP ALIVE...")
  247. break
  248. elif command_easter_egg == "stay":
  249. print("OWNER PULLS OUT HIS SHOTHUN AND SHOTS YOU DEAD.")
  250. print("YOU ARE DEAD AS FUCK.")
  251. print("WASTED")
  252. break
  253. else:
  254. print("I don't understand what are you talking about.")
  255. else:
  256. print("I don't understand what are you talking about.")
  257. elif command == "3":
  258. print("""1 - 100$ - 1g
  259. 2 - 500% - 7g""")
  260. command_ayahuasca = input(">")
  261. if command_ayahuasca == "1":
  262. if money <= 101:
  263. print("YOU DONT HAVE ENOUGH MONEY")
  264. elif money >= 101:
  265. print("So you want to be enlightened, huh? Here you go...")
  266. print("YOU HAVE BEEN GIVEN 1g OF PERUVIAN BLESSING")
  267. money -= 100
  268. print("MONEY -100$")
  269. elif command_ayahuasca == "2":
  270. if money <=501:
  271. print("YOU DONT HAVE ENOUGH MONEY")
  272. elif money >= 501:
  273. print("""Deam... Remember I do not take responsibility for you mental health.
  274. Here you go...""")
  275. print("""YOU HAVE BEEN GIVEN 7g OF PERUVIAN BLESSING
  276. YOU BECOME ENLIGHTENED CREATURE
  277. YOU WON""")
  278. money -= 500
  279. print("MONEY -500$")
  280. elif command_ayahuasca == "fuck you":
  281. print("Get outta here man! Shit! You know what am sayin!")
  282. command_easter_egg = input(">").lower()
  283. if command_easter_egg == "gerrara here":
  284. print("YOU LEFT SHOP ALIVE...")
  285. break
  286. elif command_easter_egg == "stay":
  287. print("OWNER PULLS OUT HIS SHOTHUN AND SHOTS YOU DEAD.")
  288. print("YOU ARE DEAD AS FUCK.")
  289. print("WASTED")
  290. break
  291. else:
  292. print("I don't understand what are you talking about.")
  293.  
  294. elif command == "4":
  295. break
  296. else:
  297. print("What the fuck?")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement