Author Topic: Formule  (Read 1252 times)

xtof

  • Newbie
  • *
  • Posts: 16
    • View Profile
Formule
« 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

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Formule
« Reply #1 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%?

xtof

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: Formule
« Reply #2 on: December 06, 2012, 12:30:26 PM »
the points of the the ranking + nh

rgd

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Formule
« Reply #3 on: December 07, 2012, 01:49:00 PM »
(position * 2) + if(r <= floor(n * .2), (floor(n * .2) + 1 - r) * 7, 0) + nh + nb

?