Advertisement
JumpYScriptsz

Noob O'metre

Jul 11th, 2021
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.31 KB | None | 0 0
  1. # made by junpYScriptsz
  2. #main version complete
  3. totalPointsWhichCanBeGained_NOOB = 5 + 6 + 10 + 10 + 10
  4. totalPointsWhichCanBeGained_NICETY = 5
  5.  
  6. NOOB_O_METRE = 0
  7. NICETY = 0
  8.  
  9. #factors
  10.  
  11. isNoob = False # default
  12. talkRate = 0
  13. boring = 0
  14. kind = 0
  15. personality = 0 # 0 being awful, 10 being amazing / good
  16. makesFun = False
  17. isHuman = True
  18.  
  19. print("welcome to the annoyometre!")
  20. print()
  21.  
  22. isNoob = input("Are they a noob? yes, no: ")
  23. talkRate = float(input("how much do they talk? 1-10: "))
  24. makesFun = input("do they make fun of you?: yes, no: ")
  25. boring = float(input("how boring are they? 1-10: "))
  26. kind = float(input("how kind are they? 1-10: "))
  27. personality = input("what is their personality like? 0 being awful / annoying and 10 being nice and kind: ")
  28. isHuman = input("are they human / hace feelings? yes, no: ")
  29.  
  30. if isNoob == "yes":
  31.     NOOB_O_METRE = NOOB_O_METRE + 5
  32. else:
  33.     NICETY = NICETY + 5
  34. if makesFun == "yes":
  35.     NOOB_O_METRE = NOOB_O_METRE + 6
  36. else:
  37.     NICETY = NICETY + 6
  38.    
  39. NOOB_O_METRE = NOOB_O_METRE + boring
  40. NICETY = NICETY + (10-boring)
  41.  
  42. NOOB_O_METRE = NOOB_O_METRE + kind
  43. NICETY = NICETY + (10-kind)
  44.  
  45. NOOB_O_METRE = NOOB_O_METRE + talkRate
  46. NICETY = NICETY + (10-talkRate)
  47.  
  48. percent = NOOB_O_METRE / totalPointsWhichCanBeGained_NOOB *100
  49.  
  50. print("noob o metre:", percent, "%")
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement