Author Topic: Formula for point for playing  (Read 1050 times)

wilwer

  • Newbie
  • *
  • Posts: 4
    • View Profile
Formula for point for playing
« on: July 12, 2015, 03:32:44 PM »
I need a formula for the following points

from 65th place down you get 5 points for each player you survive,
from 64 to 57 you get 6 points per player you survive,
from 56 till 49 you get 7 points per player you survive,
from 48 to 41 you get 8 points for each player you survive,
from 40 till 33 you get 9 points per player you survive,
32 to 25, you get 10 points for each player you survive,
from 24 to 17 you get 11 points for each player you survive,
from 16 to 9 you get 12 points for each player you survive.

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Formula for point for playing
« Reply #1 on: July 13, 2015, 04:47:03 PM »
(if(r < 66, 5) + if(r < 65, 1) + if(r < 57, 1) + if(r < 49, 1) + if(r < 41, 1) + if(r < 33, 1) + if(r < 25, 1) + if(r < 17, 1)) * n

It doesn't mention what happens if you rank 1 through 8.  I think if they are scored differently it might require a completely different formula.