Author Topic: New Points Formula  (Read 1007 times)

randerson044

  • Newbie
  • *
  • Posts: 15
    • View Profile
New Points Formula
« on: December 29, 2018, 01:32:47 PM »
Cory could you please convert to TD3 points formula?

10 * (numbers of players)

10 points for finishing in money

negative 10 points for every rebuy

you can never receive lower than zero points.

I think this is the formula I am looking for not sure.

max(0, (10 * (n - r + 1)) + if(inthemoney, 10 * (inthemoneyrank - r + 1)) - (10 * (numberofrebuys))

randerson044

  • Newbie
  • *
  • Posts: 15
    • View Profile
Re: New Points Formula
« Reply #1 on: December 29, 2018, 01:39:26 PM »
I tried testing the formula. I got an error.

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: New Points Formula
« Reply #2 on: December 30, 2018, 07:22:19 PM »
This looks right.  You're just missing a final parenthesis:

max(0, (10 * (n - r + 1)) + if(inthemoney, 10 * (inthemoneyrank - r + 1)) - (10 * (numberofrebuys)))