Author Topic: points for league players only  (Read 1797 times)

Karpro

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
points for league players only
« on: January 25, 2009, 04:14:52 PM »
I use sum(scores) for my overall scoring formula.  If I want it to only total the league players is there a way to do that?

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: points for league players only
« Reply #1 on: January 26, 2009, 01:58:50 PM »
Not currently using the Overall Score formula.  You'll need to use either the leagueRank or inLeague variables in the Points for Playing or Tournament Score formulas (whichever you are using) to set the non-league-members' points/score to 0.

Karpro

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
Re: points for league players only
« Reply #2 on: January 26, 2009, 05:48:16 PM »
I use a neau's formula for my points for playing and I use (points) for my tournament scoring.  How do I do this using the inLeague variable in my tournament scoring formula? 

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: points for league players only
« Reply #3 on: January 27, 2009, 10:19:40 AM »
Well, you didn't give your Points for Playing formula, but for the sake of example, assume it is:

n-r+1

Then you would change it to:

if(inLeague, n-r+1, 0)

That way, the "n-r+1" gets evaluated if the player is in the league.  Otherwise, they get 0.

tlyons131

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: points for league players only
« Reply #4 on: July 01, 2009, 12:35:11 PM »
How is "inLeague" determined?  Is this something I can set during buy-in?

Scenario:  I have a year-long league, and only points are awarded to league members, and
there is an additional cost per tournament to be considered for points.

Let's say that John wants to be considered for points for the first half of the year, so
he pays the additional cost.  Later in the year, he decides that he has no chance of making
the final table, and wants to stop paying the extra cost for points consideration.

How do I determine whether or not John is an "inLeague" player or not?

Thanks,
Terry

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: points for league players only
« Reply #5 on: July 02, 2009, 09:04:35 AM »
John is "inLeague" if he is a member of the League set on the Game tab.