This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Buy-in: $200 | |
$2400 total pot | |
1st: $1000 | |
2nd: $400 | |
3rd: $200 | |
Streak (Longest consecutive win streak): $30 | |
Survivor (Every week the lowest-scoring team is eliminated. Winner is last one standing after week 11): $30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This script is used to determine the payout amounts for my fantasy football league. | |
The script assumes the following payout rules: | |
- Buy-in: $125 | |
- Highest points per week - $15 for 16 weeks | |
- Highest points for entire season - $100 | |
- 3rd: $125 | |
- 2nd: $335 | |
- 1st: $700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Instructions: | |
- Log-in and navigate to your league's homepage. Make sure you are on Week 1 of the scores. | |
- Right-click and open Developer Tools | |
- Copy/paste the script contents into the Console and press enter to load the script into the page | |
- Execute the script within the Console by invoking the function: getScoreDataForSeason() | |
- Script will log in the Console when it is processing each week | |
- When the script is done, two tables will print to the Console: one with the top scorer for each week, another with the total scores for the entire season | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hhhh |