Pot-Limit Omaha Automated Play

A reference overview of Pot-Limit Omaha bots: the variant they play, the constraints that shape their policies, and the environments in which they are deployed.

Definition

Pot-Limit Omaha (PLO) is a variant of community-card poker in which players are dealt four hole-cards and may bet at most the size of the pot. A PLO bot is an automated playing agent that selects actions in this variant according to a policy derived from solver output, opponent models, or hand-tuned heuristics. The variant introduces equity-distribution and bet-sizing constraints not present in No-Limit Hold'em, both of which materially affect agent design.

Mechanics

Each player receives four private cards and must use exactly two of them, combined with exactly three of the five community cards, to form a five-card hand at showdown. The maximum bet permitted at any decision point equals the current pot plus the amount required to call. The bot therefore operates over a discrete but pot-coupled action space rather than an unbounded one.

The combinatorial structure of four hole-cards yields six two-card combinations per player. Hand equities are consequently distributed more tightly than in No-Limit Hold'em, with median pre-flop matchups closer to a coinflip and large draws routinely holding 40–55% equity against made hands. Variance in expected value per decision is correspondingly lower per hand but higher per session, because edge realization depends heavily on post-flop play.

Variants

Pot-Limit Omaha (standard)
Four hole-cards, high hand wins at showdown.
Pot-Limit Omaha Hi-Lo (8-or-better)
The pot is split between the highest hand and the lowest qualifying hand (eight-high or lower).
Five-Card and Six-Card PLO
Variants dealing five or six hole-cards, increasing the combination count and equity compression. Deployed primarily in private-club applications since the late 2010s.
Courchevel
A PLO variant in which the first community card is exposed before the pre-flop betting round.

History of bot development

Academic computer-poker research from the early 2000s onward concentrated on Heads-Up Limit and No-Limit Hold'em, partly because of the smaller information-state space. Public PLO solvers — notably MonkerSolver (released 2017) and PioSolver's PLO build — made counterfactual-regret-style range solutions available to operators in the late 2010s. Commercially deployed PLO bots typically pre-compute strategies for canonical spots and combine them at the table with opponent-aware adjustments and a simplified action abstraction.

Deployment environments

Bot development for PLO is concentrated in private-club environments such as PPPoker, PokerBros, ClubGG and UPoker rather than on public regulated sites. This concentration reflects regulatory posture and the economic structure of club ecosystems rather than a technical limitation of the variant. Public sites enforce stronger device fingerprinting and behavioral detection; private clubs operate on a closed-membership model in which agent participation is governed by the club operator.

Operator inquiries regarding PLO agent deployment, equity tooling, or solver-output integration are accepted through the project contact.

Sit at the pot
  1. Billings, D. et al. (2002). The challenge of poker. Artificial Intelligence 134.
  2. Brown, N., Sandholm, T. (2017). Libratus: The superhuman AI for no-limit poker.
  3. MonkerSolver release notes (2017–2023).