Author Topic: Points Trouble - I need help for a formula  (Read 2099 times)

madcow50

  • Newbie
  • *
  • Posts: 3
    • View Profile
Points Trouble - I need help for a formula
« on: September 16, 2008, 10:41:52 PM »
I need help for the points in my league club. We use this formula   [    11 * (sqrt(n)/sqrt(r)) * (1+log(bc+0.25))    ] , but we want that only the 40% of the players takes the points.
for example. Today there were 60 players, so the first 24 takes points and from 25 to 60 0 points.
How can I do?

Thank you for the help.

Sorry for my English

Phaze

  • Sr. Member
  • ****
  • Posts: 346
    • View Profile
Re: Points Trouble - I need help for a formula
« Reply #1 on: September 17, 2008, 06:56:14 AM »
if(r <= (n * 0.4), 11 * (sqrt(n)/sqrt(r)) * (1+log(bc+0.25)), 0)

madcow50

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Points Trouble - I need help for a formula
« Reply #2 on: September 17, 2008, 10:49:55 AM »
thanks for answer and sorry for the double posts