ultimatenutter

CayoRandom

Jan 29th, 2025 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | Gaming | 0 0
  1. CayoRando.py
  2. import random
  3.  
  4. cars = ["Kosatka", "Alkonost", "Velum", "Stealth Annihilator", "R0-86", "Patrol Boat", "Longfin", "Player Choice"]
  5. entry_points = ["Main Dock", "North Dock", "Airstrip", "Drainage Tunnel", "Player Choice"]
  6. exit_points = ["Airstrip", "North Dock", "Main Dock", "Kosatka", "Player Choice"]
  7. approaches = ["Aggressor", "Conspirator", "Crack Shot", "Saboteur", "Marksman", "Player Choice"]
  8. sups = ["Yes", "No", "Player Choice"]
  9. armors = ["yes", "no", "Player Choice"]
  10. stealth = ["yes", "no", "Player Choice"]
  11. scope = ["full Scope", "Secondary Only", "No Scope", "Player Choice"]
  12. cycle = ["day", "Night", "Player Choice"]
  13. Treasure = ["Island Only", "Compound Only", "both", "Player Choice"]
  14.  
  15. def randomize_heist():
  16. vehicles = random.choice(cars)
  17. entry = random.choice(entry_points)
  18. exit = random.choice(exit_points)
  19. approach = random.choice(approaches)
  20. suppressors = random.choice(sups)
  21. armor = random.choice(armors)
  22. sneak = random.choice(stealth)
  23. gather_intel = random.choice(scope)
  24. time = random.choice(cycle)
  25. loot = random.choice(Treasure)
  26.  
  27. heist_plan = {
  28. "Vehicles": vehicles,
  29. "Entry Point": entry,
  30. "Exit Point": exit,
  31. "Approach": approach,
  32. "Suppressors": suppressors,
  33. "Armor": armor,
  34. "Stealth": sneak,
  35. "Gather Intel": gather_intel,
  36. "Time": time,
  37. "loot": loot,
  38. }
  39.  
  40. return heist_plan
  41.  
  42.  
  43. heist_plan = randomize_heist()
  44.  
  45. for key, value in heist_plan.items():
  46. print(f"{key}: {value}")
Advertisement
Add Comment
Please, Sign In to add comment