-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My OH RTA with Action Trace Profile implemention #148
Open
Mudr0x
wants to merge
2,076
commits into
TheHighFish:master
Choose a base branch
from
Mudr0x:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
* loading the libraries * history-engine Game type: const Omaha
Useful Visual RTA window which attach itself to the OH attached poker table activated via Menu->Edit->RT Assistant, displaying in real-time GTO infos such Handrank, Prwin/tie/los,, Out odds, Implied odds, Pot odds, My equity, Pot equity retrieved directly from Open-PPL formulas, so it needs to put to your formula such instruction lines: ##f$MyEquity## (f$nOuts * 4) - (f$nOuts - 8) ##f$PotEquity## f$nOuts * (1 - ( 1 / (((PotSize + AmountToCall) / PotSize)))) ##preflop## WHEN ismyturn RETURN f$nOuts FORCE WHEN ismyturn RETURN f$OutOdds FORCE WHEN ismyturn RETURN f$ImpliedOdds FORCE WHEN ismyturn RETURN f$PotOdds FORCE WHEN ismyturn RETURN f$MyEquity FORCE WHEN ismyturn RETURN f$PotEquity FORCE WHEN ismyturn RETURN f$prwin_mustplay FORCE WHEN isomaha Fold FORCE WHEN istournament RETURN Termita_SNG_Preflop FORCE WHEN isfl RETURN Winngy_FixedLimit_Preflop FORCE WHEN Others RETURN Gecko_6Max_FR_NL_BSS_Preflop FORCE for ##preflop##, ##flop##, ##turn##, ##river## It is a first example of how powerful it could be, so I plan to add much more precious GTO infos for the future. Also I'm not sure about MyEquity and PotEquity formulas so please correct me if needed.
Real Time Advisor (RTA) for OpenHoldem with a "Switch to Action Trace Profile" menu option which is an option to Add "Action Traces" to your Profile to easily trace Last Action line executed (relative/absolute line) on your Profile to faster more Profile debugging.
Real Time Advisor (RTA) for OpenHoldem with a "Switch to Action Trace Profile" menu option which is an option to Add "Action Traces" to your Profile to easily trace Last Action line executed (relative/absolute line) on your Profile to faster more Profile debugging.
My OH RTA with Action Trace Profile implemention
TableMap for PokerTH V.1.1.2 10-max DefaultTheme. For 10-players table size. Works optimal with default table style gfx (theme) and font smoothing disabled (i.e. advanced system setting set to 'adjust for best performance'), I preconise also to disable fade-out and flip animation on PokerTH settings.
To allow more flexibility and comply correctly with the description of the manual.
A very useful fix that complies more accurately with the manual's description of lastraised(x)
raisbits(x) now includes the user chair to fully and properly comply with the OH Manual.
Action Trace Profile (ATP) patch for OH Real-Time Advisor (RTA) extension from my previous pull request #28 now display real-time executing line ("Action Trace") from profile for an OH bot taken action (logic decision) as a hyperlink which open on click my OpenPad for OH and autoscroll to this executing line for usefull real-time debugging of your profile. OpenPad is lightweight editor based on Scintilla edit control specially dedicated for OH with usefull direct line inputing and autoscroll option for fast OH profile debugging mostly with huge file size and with clear target line highlighting and numbering available here: https://github.com/Mudr0x/OpenPad where you can download last release and put it on tools directory of OH.
…w/MissinfFontsAlert OpenScrape Collect Fonts Automation with Missing Fonts alert
Updated version of PokerTH v1.1.2 TM with minor region corrections and a complete font collection now. TableMap for PokerTH V.1.1.2 10-max DefaultTheme. For 10-players table size. Works optimal with default table style gfx (theme) and font smoothing disabled (i.e. advanced system setting set to 'adjust for best performance'), I preconise also to disable fade-out and flip animation on PokerTH settings.
PokerTH V.1.1.2 10-max DefaultTheme TM
Corrected: open files with blank spaces names, view of normal custom log messages along side with special debug log messages ($log_...), recognization of different 'Force' word typos (Force or FORCE)...
Countermeasure of player names scraping by putting unwanted string to scrape (like "Time" on Ipoker Networks for example) on new Preferences->Scraper entry.
…ape-for-player-names Unwanted string to scrape for player names patch
Unwanted scrapes (casino animations) countermeasure on player names update, with a better and more ergonomic UI, covering almost all possible casino animations and cases that may conflict with player names and possibility to use regex expressions (to do so only enter regex arguments and not entire regex formulas).
Unwanted scrapes (casino animations) countermeasure on player names update, with a better and more ergonomic UI, covering almost all possible casino animations and cases that may conflict with player names and possibility to use regex expressions (to do so only enter regex arguments and not entire regex formulas).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Real Time Advisor (RTA) for OpenHoldem with a "Switch to Action Trace Profile" menu option which is an option to Add "Action Traces" to your Profile to easily trace Last Action line executed (relative/absolute line) on your Profile to faster more Profile debugging.