Author Topic: Formula help  (Read 1138 times)

Asegzamfire

  • Jr. Member
  • **
  • Posts: 70
    • View Profile
Formula help
« on: July 19, 2012, 12:34:12 AM »
I need help to make a formula if someone can help.

40 players always

40th get 50
39th to 10th increase by 4 per position (so 54 to 170)
9th to 4th increase by 10 per position (so 180 to 230)
3rd to 1st increase by 30 per position (260 to 320)

Im having hard time with the incrementation.... and its a big part of the formula lol

Thx in advance !!

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Formula help
« Reply #1 on: July 19, 2012, 10:09:37 AM »
if(r < 41, 46 + ((41 - r) * 4) + if(r < 10, (10 - r) * 6) + if(r < 4, (4 - r) * 20))

Asegzamfire

  • Jr. Member
  • **
  • Posts: 70
    • View Profile
Re: Formula help
« Reply #2 on: July 19, 2012, 10:50:26 AM »
Thx Corey, work perfectly fine!!!!!