Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. #Created by CreeprfighterYTC
  2. import random
  3. team = input("What team are you on? red or blue")
  4. if (team == "blue"):
  5. CTPrimary = random.choice(["M4A4", "Famas", "P90", "Vector", "AWP", "Scar-20", "Nova", "Mag-7", "M249", "UMP-45"])
  6. print ("Primary: " + str(CTPrimary))
  7. CTPistol = random.choice(["CZ-75", "M1911", "P250", "Deagle"])
  8. print ("Secondary: " + str(CTPistol))
  9. elif (team == "red"):
  10. TPrimary = random.choice(["AK-47", "FN-FAL", "P90", "Mac-10", "AWP", "Dragunov", "Sawn-Off", "Mag-7", "M249", "UMP-45"])
  11. print("Primary: " + str(TPrimary))
  12. TPistol = random.choice(["Glock-18", "CZ-75", "Tec-9", "Deagle"])
  13. print("Secondary: " + str(TPistol))
  14. else:
  15. print("DERP! That's not a team!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement