The Tournament Director Forums

Main => Help Me => Topic started by: Bob Moore on June 03, 2006, 03:44:09 PM

Title: Help with unique points formula
Post by: Bob Moore on June 03, 2006, 03:44:09 PM
Here's my challenge;

League tournaments
 10 points for playing
 5 points for a hit
 10 points for a hit on a player with higher league ranking
 -5 points for being hit by a player with a lower league ranking
 50 for first
 40 for second
 30 for third
 25 fourth
 20 fifth
 15 sixth
 10 seventh
 5 eighth.

Now for the second session everything is the same but we add a twist....
-25 points for a $2500 add-on

Is this possible...If it is can you guys help out with the formula?
Title: Re: Help with unique points formula
Post by: Corey Cooper on June 04, 2006, 08:34:56 PM
There are a number of ways to accomplish this, here's one.  Set your "Points for Playing" to:

10 + (nh*5) + if(r=1, 50, 0) + if(r=2, 40, 0) + if(r=3, 30, 0) + if(r=4, 25, 0) + if(r=5, 20, 0) + if(r=6, 15, 0) + if(r=7, 10) + if(r=8, 5, 0)

For the second session, add:

+ (na * -25)

You'll have to adjust the points manually to add the 10 and -5 points for hitting/being hit by a player with a higher/lower league ranking.