Advertisement
Guest User

Untitled

a guest
Feb 9th, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. IKS InstaGib Tournament I:
  2.  
  3. Option I: smart point system.
  4.  
  5. K(player) is sum of player's kills in the entire tournament
  6.  
  7. K(player)(opponent) is amount of times player killed opponent.
  8.  
  9.  
  10. P(player) is sum of player's points.
  11.  
  12. P(player)(opponent) is amount of points player gets from winning a match against opponent.
  13.  
  14. P(player)(opponent) = K(player)(opponent) * K(opponent)
  15.  
  16.  
  17. This system will reduce feeding by weaker players. One will get more points from killing gunz than from killing fubar, which is understandable. Unless fubar outscores gunz.
  18.  
  19.  
  20. R(player) is player's Reduced Skill Rating.
  21.  
  22. Reduced Skill Rating is meant to answer the question "How good player really is?". It gives explicit, comparable answer in form of x/10.
  23.  
  24. R(player) = 10 * P(player) / P(tournament_winner).
  25.  
  26.  
  27. Example: we have 4 players in tournament - gunz, Cole, fubar, Parolo.
  28.  
  29. gunz vs gunz - 10:10
  30. gunz vs Cole - 10:3
  31. gunz vs fubar - 10:1
  32. gunz vs Parolo - 10:4
  33.  
  34. Cole vs fubar - 10:8
  35. Cole vs Parolo - 10:9
  36.  
  37. fubar vs Parolo - 10:5
  38.  
  39.  
  40. K(gunz) = 30
  41. K(Cole) = 23
  42. K(fubar) = 19
  43. K(Parolo) = 18
  44.  
  45.  
  46. P(gunz)(Cole) = 230
  47. P(gunz)(fubar) = 190
  48. P(gunz)(Parolo) = 180
  49. P(gunz) = 600
  50.  
  51.  
  52. P(Cole)(gunz) = 90
  53. P(Cole)(fubar) = 190
  54. P(Cole)(Parolo) = 180
  55. P(Cole) = 460
  56.  
  57.  
  58. P(fubar)(gunz) = 30
  59. P(fubar)(Cole) = 184
  60. P(fubar)(Parolo) = 180
  61. P(fubar) = 394
  62.  
  63. P(Parolo)(gunz) = 120
  64. P(Parolo)(Cole) = 207
  65. P(Parolo)(fubar) = 95
  66. P(Parolo) = 422
  67.  
  68.  
  69. Rating:
  70.  
  71. 1.gunz - 600 points, RSR: 10/10
  72. 2.Cole - 460 points, RSR: 7.7/10
  73. 3.Parolo - 422 points, RSR: 7/10
  74. 4.Fubar - 394 points, RSR: 6.6/10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement