Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. //Points for skill group 2-9: percentage * (MaxPointsFromMaps
  2. //MaxPointsFromMaps = MapCount * 700p + Bonus count * 400
  3. //
  4. // Max rank lenght: 32 characters
  5. // Always keep ranks in ascending order by percentage
  6. // Available colors: {default}, {red}, {lightred}, {darkred}, {bluegray}, {blue}, {darkblue}, {purple}, {orchid}, {yellow}, {gold}, {lightgreen}, {green}, {lime}, {gray}, {gray2}
  7.  
  8. // name -> the text you will see as rank (can be colored with multiple colors as well)
  9. // percentage -> the percent required to get that rank title
  10. // rankColor -> the color the player's name will be if he/she is on that rank
  11.  
  12. "ckSurf.SkillGroups"
  13. {
  14. "1"
  15. {
  16. "name" "{DEFAULT}NEW"
  17. "percentage" "-1.0"
  18. "rankColor" "{DEFAULT}"
  19. }
  20. "2"
  21. {
  22. "name" "{GREY}ROOKIE"
  23. "percentage" "0.001"
  24. "rankColor" "{GRAY}"
  25. }
  26. "3"
  27. {
  28. "name" "{GREY}BEGINNER"
  29. "percentage" "0.01"
  30. "rankColor" "{GREY}"
  31. }
  32. "4"
  33. {
  34. "name" "{LIGHTBLUE}CASUAL"
  35. "percentage" "0.02"
  36. "rankColor" "{LIGHTBLUE}"
  37. }
  38. "5"
  39. {
  40. "name" "{BLUE}POTENTIAL"
  41. "percentage" "0.031"
  42. "rankColor" "{BLUE}"
  43. }
  44. "6"
  45. {
  46. "name" "{DARKBLUE}SKILLED"
  47. "percentage" "0.05"
  48. "rankColor" "{DARKBLUE}"
  49. }
  50. "7"
  51. {
  52. "name" "{YELLOW}EXPERIENCED"
  53. "percentage" "0.08"
  54. "rankColor" "{YELLOW}"
  55. }
  56. "8"
  57. {
  58. "name" "{lightgreen}EXCEPTIONAL"
  59. "percentage" "0.12"
  60. "rankColor" "{lightgreen}"
  61. }
  62. "9"
  63. {
  64. "name" "{LIME}HOTSHOT"
  65. "percentage" "0.17"
  66. "rankColor" "{LIME}"
  67. }
  68. "10"
  69. {
  70. "name" "{PINK}EXPERT"
  71. "percentage" "0.23"
  72. "rankColor" "{PINK}"
  73. }
  74. "11"
  75. {
  76. "name" "{LIGHTRED}PRO"
  77. "percentage" "0.3"
  78. "rankColor" "{LIGHTRED}"
  79. }
  80. "12"
  81. {
  82. "name" "{RED}GOD"
  83. "percentage" "0.38"
  84. "rankColor" "{RED}"
  85. }
  86. "13"
  87. {
  88. "name" "{DARKRED}VETERAN"
  89. "percentage" "0.47"
  90. "rankColor" "{DARKRED}"
  91. }
  92. "14"
  93. {
  94. "name" "{GREEN}ELITE"
  95. "percentage" "0.57"
  96. "rankColor" "{GREEN}"
  97. }
  98. "15"
  99. {
  100. "name" "{BLUE}SURF{PURPLE}MASTER"
  101. "percentage" "0.69"
  102. "rankColor" "{PURPLE}"
  103. }
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement