The Tournament Director Forums

Main => Templates, Layouts and Sounds => Topic started by: lazerfire on July 02, 2009, 12:52:24 AM

Title: Can you help with points
Post by: lazerfire on July 02, 2009, 12:52:24 AM
i have this atm

(n-r+1) + if(r <= 3, 1, 0) + if(r == 1, 1, 0)

but would like the top 8 players ie final table to recive a extra point for making final table could give me a form for this so i can cut and pasted.


many thanks
Title: Re: Can you help with points
Post by: Johno on July 02, 2009, 01:20:03 AM
what about:

(n-r+1) + if(r <= 3, 1, 0) + if(r == 1, 1, 0) + if(r < 9, 1, 0)
Title: Re: Can you help with points
Post by: Corey Cooper on July 02, 2009, 09:25:15 AM
Or even:

(n-r+1) + if(r <= 3, 1, 0) + if(r == 1, 1, 0) + finalTable

Title: Re: Can you help with points
Post by: lazerfire on July 05, 2009, 10:14:50 PM
ty for reply & help