Last active
July 12, 2018 19:17
-
-
Save hagure/c2f19603185eda2e1c12ad9d7aaa72f7 to your computer and use it in GitHub Desktop.
Soulver document to quickly calculate pot splits for tournaments.
This file contains hidden or 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
// Formatted for use by [Soulver](http://www.acqualia.com/soulver/) | |
// Tourney Info | |
Entrants =22 | |
EntryFee= $5 | |
Bonus = 0 | |
Pot = EntryFee × Entrants + Bonus | |
// Pot Split Breakdown (e.g. 70/20/10) | |
FirstSplit= .7 | |
SecondSplit= .2 | |
ThirdSplit= .1 | |
// Prize Payouts | |
FirstPrize = Pot × FirstSplit | |
SecondPrize = Pot × SecondSplit | |
ThirdPrize = Pot × ThirdSplit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment