Author Topic: Formula help for a points + prize league  (Read 1896 times)

Altdotweb

  • Newbie
  • *
  • Posts: 4
    • View Profile
Formula help for a points + prize league
« on: January 15, 2008, 12:28:21 PM »
Here are the specifics

13 week league with a running total. Top 10 in points at the end of the season will play a supplemental game.

Open entry (not necessary to play all games to stay in the running and can join any week.)

Players will earn points based on the following criteria:

- (50) points for inital buy-in each week

- (50) points for making the final table of 10 each week

- (50) points for each place from 10 to 1 progressively (10th place = 50, 9th place = 100, 8th = 150, etc.)

- The amount of prizes each week in points (i.e. 600 purse - 1st = 300 points, 2nd = 180 points, 3rd = 120 points)

The only variable is the amount of points given for each element.

I really appreciate any help with this formula.

Thanks in advance.

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Formula help for a points + prize league
« Reply #1 on: January 15, 2008, 12:45:18 PM »
Code: [Select]
50 + (finalTable * 50) + max(0, (11 - r) * 50)

You'll have to add the points received for prizes to each prize individually.