Author Topic: Can you help with points  (Read 2540 times)

lazerfire

  • Newbie
  • *
  • Posts: 5
    • View Profile
Can you help with points
« 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

Johno

  • Full Member
  • ***
  • Posts: 191
    • View Profile
    • The Poker Leaderbaord
Re: Can you help with points
« Reply #1 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)
My League Website - Joomla Component for TD. Now available for Joomla 1.5, 1.7 & 2.5

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Can you help with points
« Reply #2 on: July 02, 2009, 09:25:15 AM »
Or even:

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


lazerfire

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Can you help with points
« Reply #3 on: July 05, 2009, 10:14:50 PM »
ty for reply & help