Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - efdenny

Pages: 1 2 3 [4] 5 6 ... 12
46
Help Me / Re: Easy point formula help
« on: April 26, 2018, 01:51:53 PM »
I'll take an attempt at this one:

if((r >= 17) and (r <= 20), 1) + if((r >= 13) and (r <= 16), 3) + if((r >= 9) and (r <= 12), 5) if((r >= 5) and (r <= 8 ), 7) + if((r >= 1) and (r <= 4), 10)

I'm sure there's an easier/cleaner way, but this should do the trick.

47
Help Me / Re: WSOP POY Formula
« on: April 21, 2018, 05:33:43 PM »
Thanks again for your help!! I really appreciate it...

48
Help Me / Re: WSOP POY Formula
« on: April 21, 2018, 02:51:12 PM »
I figured it out... you don't actually need "p" in the last two parts of the formula:

assign("p", n - 9)
assign("p20", round(p * .2))
assign("p30", round(p * .3))

round(switch(r,1,477.45,2,238.75,3,214.845,4,190.97,5,179.05,6,167.1,7,143.25,8,131.27,9,119.35)*pow(n,0.125))
+ if((r > 9) and (r <= 9 + p20), 95.49 * pow(n, 0.125))
+ if((r > 9 + p20) and (r <= 9 + p20 + p30), 47.745 * pow(n, 0.125))
+ if(r > 9 + p20 + p30, 23.875 * pow(n, 0.125))

49
Help Me / Re: WSOP POY Formula
« on: April 20, 2018, 08:11:51 PM »
LOL! Much closer... just a bit off though.

As an example, for a 21 person tournament, taking the top 9 out because those are correct, the scores should have been:

10 & 11: 140
12-15: 70
16-21: 35

However, with this formula, 12-21 are all getting 70. Thoughts?

50
Help Me / Re: WSOP POY Formula
« on: April 19, 2018, 08:54:42 PM »
Not quite there... not sure what's missing, but it's only assigning points to the top 9.

51
Help Me / Re: WSOP POY Formula
« on: April 19, 2018, 07:34:18 AM »
Thanks! I'll try it out and let you know... thanks for the help!!

52
Help Me / Re: WSOP POY Formula
« on: April 17, 2018, 06:46:23 PM »
correct. In the actual WSOP, it would be next 20% of ITM players, but I'm wanting to modify for our league.

53
Help Me / Re: WSOP POY Formula
« on: April 17, 2018, 06:09:53 PM »
Based on the $3k NLHE tournament, I found the math, and came up with the formula for the top 9.

round(switch(r,1,477.45,2,238.75,3,214.845,4,190.97,5,179.05,6,167.1,7,143.25,8,131.27,9,119.35)*pow(n,0.125))

I need help with the final parts of the equation.

next 20%: 95.49*pow(n,0.125)
next 30%: 47.745*pow(n,0.125)
next 50%: 23.875*pow(n,0.125)

54
Help Me / WSOP POY Formula
« on: April 15, 2018, 05:24:20 PM »
Has anyone done the math on the 2018 WSOP POY formula? http://www.wsop.com/2018/POY/

55
Help Me / Re: JSON Example?
« on: February 22, 2018, 05:15:42 PM »
Perfect, thanks!!

56
Help Me / JSON Example?
« on: February 21, 2018, 06:35:29 PM »
Does anyone have an example tournamentstatus.html page they have produced using JSON? I'm having a bit of trouble getting started...

57
Help Me / Re: Progressive Bounty
« on: February 17, 2018, 06:52:01 PM »
+1 on this feature. Would be great to incorporate into my league games.

58
Help Me / Re: Overall Score Formula Help
« on: January 30, 2018, 05:06:04 PM »
OK, thanks... I kind of figured that was the case. Thanks again!

59
Help Me / Overall Score Formula Help
« on: January 27, 2018, 05:26:27 PM »
Is there a way to do the following with the Overall Score formula in a profile?

We have 3 "leagues" that can combine scores for an overall champion. Here's what I'd like to do:

1) Count every score from league A & B
*PLUS*
2) Count only the top 5 scores from league C

In other words, total score then would be: scores(A&B) + top5scores(C)

Is this possible?

60
Help Me / Re: Problems with tournamentstatus.html
« on: November 09, 2017, 06:29:48 PM »
I ran into this as well... I changed from JSON to Formula Variables, and then everything worked.

Pages: 1 2 3 [4] 5 6 ... 12