The Tournament Director Forums

Main => Help Me => Topic started by: xtof on November 13, 2012, 01:59:23 AM

Title: Formule
Post by: xtof on November 13, 2012, 01:59:23 AM
hi

this is my formula (position * 2) + if(r <= floor(n * .2), (floor(n * .2) + 1 - r) * 7, 0) how  can i also count here the points for hitman and the bountys ?

thx
Title: Re: Formule
Post by: Corey Cooper on November 13, 2012, 10:54:58 AM
Looks like everyone gets

(position * 2)

and only the top 20% get

floor(n * .2) + 1 - r) * 7

Adding points for busting out other players can be done using nh (number of hits) and for bounties collected using nb (number of bounties won).

How would you like to add them?  Just adding nh and nb to the formula would give a single point for each player busted out and a single point for each bounty collected.

Who gets the points?  Everyone, or only the top 20%?
Title: Re: Formule
Post by: xtof on December 06, 2012, 12:30:26 PM
the points of the the ranking + nh

rgd
Title: Re: Formule
Post by: Corey Cooper on December 07, 2012, 01:49:00 PM
(position * 2) + if(r <= floor(n * .2), (floor(n * .2) + 1 - r) * 7, 0) + nh + nb

?