-
Notifications
You must be signed in to change notification settings - Fork 140
interpreting_titletext
Most casinos show very valuable info in the titlebar, for example
Tournament 12345678 Table 5 - No Limit Hold'em - Blinds $600/$1200 Ante $75
Valuable informations in the example above (PokerStars) are:
-
the game-type: tournament (and no-limit)
-
the size of the blinds: $600 / $1200
-
the ante: $75
Besides of valuable info the titlestring comes with some technical benefits:
-
it is usually very reliable
-
it can be accessed easily with the Windows API (GetWindowText) and does not require any scraping.
Therefore OpenHoldem provides a way to interpret the titletext:
In the example above
-
“^*” followed by the constant string “- “ recognized and discards everything until it finds “- “ in the titlestring. This means the title-parser will skip “OpenHoldem Poker - ” because this data does not provide any useful info for us.
-
Again there follows a dummy that needs to be skipped. “^* - blinds ” will ignore everything until it finds “ - blinds ”.
-
Now comes the first interesting piece of data. “^s” expects a numerical value, here “5” that will be interpreted as the size of the small blind.
-
“/” is a constant string that will be ignored. In our exaple it separates small-blind from big blind.
-
Finally “^b” works similar like “^s”: it expects a numerical value too and interprets it as the size of the big-blind.
- Introduction
- About OpenHoldem
- How OpenHoldem works
- Installation and setup
- License: GPL V3
- The software
- Gui
- Preferences
- Formula editor
- ManualMode
- OHreplay
- Poker tracker
- Table maps
- Introduction
- Scraping in practice
- Expert tricks
- Technical reference
- The bot-logic
- Built-in symbols
- OH-script
- OH-script explained
- Winngys hand strength library
- User-dll
- Openholdem extensions
- Real-money botting
- Automation
- Stealth
- Dual system configuration
- Various topics
- Introduction
- OpenPPL is The Language
- OpenPPL Symbols
- OpenPPL In Practice
- If You Want To Buy...