Skip to content

Instantly share code, notes, and snippets.

@hagure
Last active July 12, 2018 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hagure/c2f19603185eda2e1c12ad9d7aaa72f7 to your computer and use it in GitHub Desktop.
Save hagure/c2f19603185eda2e1c12ad9d7aaa72f7 to your computer and use it in GitHub Desktop.
Soulver document to quickly calculate pot splits for tournaments.
// 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