Author Topic: Rankingsystem  (Read 1090 times)

Sjelm

  • Newbie
  • *
  • Posts: 23
    • View Profile
Rankingsystem
« on: April 07, 2013, 07:18:26 AM »
for our monthly tournament I want to apply a rankingsystem:

If we have for example 75 players, first out will get 1 point, 10th out will get 10 points, winner will get 75 points.
Additionally i want to reward the final table players with extra points.
9 +1extra
8 +2extra
7 + 3extra
6 +4extra
5 +5extra
4 +7extra
3 +10extra
2 +15extra
1 + 25extra
Which formula can I apply?

Magic_fubu

  • Hero Member
  • *****
  • Posts: 1035
    • View Profile
Re: Rankingsystem
« Reply #1 on: April 07, 2013, 09:18:15 PM »
One basic formula that will work is this:

n - r + 1  (one point for last, one point for next out, etc.)

switch(r, 1, 25, 2, 15, 3, 10, 4, 7, 5, 5, 6, 4, 7, 3, 8, 2, 9, 1)   (awards points based upon top 9 finish, 25 bonus for 1st, 15 for 2nd, etc)

put together, makes n - r + 1 + switch(r, 1, 25, 2, 15, 3, 10, 4, 7, 5, 5, 6, 4, 7, 3, 8, 2, 9, 1)
My cowboys shot down your rockets
---
If you send a request to me please send that you got me from here w/your TD name to confirm. Thanks!

Sjelm

  • Newbie
  • *
  • Posts: 23
    • View Profile
Re: Rankingsystem
« Reply #2 on: April 08, 2013, 02:03:27 AM »
Thanks Magic-fubu
I will try that formula