Author Topic: Formula trouble  (Read 1258 times)

Kris21176

  • Newbie
  • *
  • Posts: 2
    • View Profile
Formula trouble
« on: July 04, 2012, 12:36:15 AM »
HI, I'm currently using  Sqrt(n) / Sqrt(r) * 41.62 for my league points system.

 However I would like for only the top 30% of players to receive the points
 the bottom 30% to receive 5 Pt's and the remaining middle 40% to get 15 Pt's

any help please will save me from manually adjusting the points after tournaments
cheers

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6220
    • View Profile
Re: Formula trouble
« Reply #1 on: July 04, 2012, 09:20:56 AM »
if(r <= ceil(n * .3), Sqrt(n) / Sqrt(r) * 41.62, if(r > ceil(n * .7), 5, 15))

Kris21176

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Formula trouble
« Reply #2 on: July 05, 2012, 12:57:06 AM »
Champion, Thanks a Bunch Corey