Guest User

Untitled

a guest
Dec 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. #input7 = input("What style crosshair do you want?\nStyle 4 = Static\nStyle 5 = Expanding when firing\nStyle 0 = Fully dynamic, can only change color\nStyle 2 = Dynamic when moving and firing, but has a border.\nStyle 3 = Like style 2 but doesn’t have a border.\n\nInput: “) for later
  2.  
  3. import time
  4. print()
  5. print("CS:GO CROSSHAIR GENERATOR\n")
  6. time.sleep(0.05)
  7. input1 = input("What size do you want your crosshair to be? Large, small, or medium?\nAdd extra to small or large to change size.\nExample: extra small\n\nInput: ")
  8. if input1 == "small":
  9. print("You selected S.\n")
  10. size = 2
  11. elif input1 == "extra small":
  12. print("You have selected extra small.\n")
  13. size = 1
  14. elif input1 == "extra medium":
  15. print("come on.\n")
  16. size = 10000
  17. elif input1 == "extra large":
  18. print("You have selected XL.\n")
  19. size = 8
  20. elif input1 == "medium":
  21. size = 4
  22. print("\nYou have selected M.\n")
  23. elif input1 == "large":
  24. print("You have selected L.\n")
  25. else:
  26. print("INVALID.")
  27. size == ""
  28. input2 = input("What thickness do you want your crosshair to have in pixels (assuming you play in 1920x1080)?\n\nInput: ")
  29. if input2 == "1":
  30. print("Your crosshair thickness is 1 pixel(s).\n")
  31. thickness = 1
  32. elif input2 == "2":
  33. print("Your crosshair thickness is 2 pixel(s).\n")
  34. elif input2 == "3":
  35. print("Your crosshair thickness is " + input2 + ".\n")
  36. thickness = input2
  37. elif input2 == "0.5":
  38. print("Your crosshair thickness is " + input2 + ".\n")
  39. thickness = input2
  40. elif input2 == "1.5":
  41. print("Your crosshair thickness is " + input2 + ".\n")
  42. thickness = input2
  43. elif input2 == "2.5":
  44. print("Your crosshair thickness is " + input2 + ".\n")
  45. thickness = input2
  46. elif input2 == "3.5":
  47. print("Your crosshair thickness is " + input2 + ".\n")
  48. thickness = input2
  49. elif input2 == "4":
  50. print("Your crosshair thickness is " + input2 + ".\n")
  51. thickness = input2
  52. elif input2 == "5":
  53. print("Your crosshair thickness is " + input2 + ".\n")
  54. thickness = input2
  55. elif input2 == "4.5":
  56. print("Your crosshair thickness is " + input2 + ".\n")
  57. thickness = input2
  58. else:
  59. print("INVALID.")
  60. print()
  61. input3 = input("What color do you want your crosshair to be?\nValid inputs include basic colors such as white, black, red, green, light blue, dark blue, pink, yellow, orange, and purple.\n\nInput:")
  62. if input3 == "green":
  63. red = 0
  64. green = 255
  65. blue = 0
  66. print("You have selected", input3 + ".")
  67. elif input3 == "black":
  68. red = 0
  69. green = 0
  70. blue = 0
  71. print("You have selected" , input3 + ".")
  72. elif input3 == "white":
  73. red = 255
  74. green = 255
  75. blue = 255
  76. print("You have selected" , input3 + ".")
  77. elif input3 == "red":
  78. red = 255
  79. green = 0
  80. blue = 0
  81. print("You have selected", input3 + ".")
  82. elif input3 == "purple":
  83. red = 172
  84. green = 0
  85. blue = 255
  86. print("You have selected", input3 + ".")
  87. elif input3 == "pink":
  88. red = 255
  89. green = 0
  90. blue = 255
  91. print("You have selected", input3 + ".")
  92. elif input3 == "yellow":
  93. red = 255
  94. green = 255
  95. blue = 0
  96. print("You have selected", input3 + ".")
  97. elif input3 == "dark blue":
  98. red = 0
  99. green = 0
  100. blue = 255
  101. print("You have selected", input3 + ".")
  102. elif input3 == "orange":
  103. red = 255
  104. green = 124
  105. blue = 0
  106. print("You have selected", input3 + ".")
  107. elif input3 == "light blue":
  108. red = 0
  109. green = 210
  110. blue = 255
  111. print("You have selected", input3 + ".")
  112. else:
  113. print("INVALID.")
  114. input7 = input("What style crosshair?")
  115. if input7 == "4":
  116. style = 4
  117. print("You have selected style", style)
  118. elif input7 == "1":
  119. style = 1
  120. print("You have selected style", style)
  121. elif input7 == "0":
  122. style = 0
  123. print("You have selected style", style)
  124. elif input7 == "2":
  125. style = 2
  126. print("You have selected style", style)
  127. elif input7 == "3":
  128. style = 3
  129. print("You have selected style", style)
  130. elif input7 == "6":
  131. style = 6
  132. print("You have selected style", style)
  133. elif input7 == "5":
  134. style = 5
  135. print("You have selected style", style)
  136. else:
  137. style == ""
  138. print("\n\nCOMMANDS:")
  139. print("cl_crosshairsize", size)
  140. print("cl_crosshairthickness" , thickness)
  141. print("cl_crosshair_r", red, "\ncl_crosshair_b", blue, "\ncl_crosshair_g", green)
  142. print("cl_crosshairstyle",style)
  143. # can make a for loop to test for if input1 is equal to extra small, medium, or large, extra medium, extra large, small
Add Comment
Please, Sign In to add comment