Quantcast
Channel: Poker Genius Forums - All Forums
Viewing all 707 articles
Browse latest View live

Bug report -- PG reports incorrect pot size

$
0
0
When winning a pot, the program reports incorrect amount of winnings.

For example, playing $1$/2 with all stacks at $200 (no rake), a player in middle position open-raises $4 (making the bet $6), everyone folds.

The player wins exactly $3 -- the total of the blinds -- her stack is now $203.

However, Poker "Genius" reports "Player wins $5 uncontested".

Hot keys, adjusting cash and tournament structures, etc

$
0
0
I posted these separately yesterday and they were deleted for some reason. Here they are together:

1) Users should be able to easily specify EXACTLY what the blinds, buy-ins, rake or drop (and antes) are so that they may duplicate cardrooms that they may play.
For example, no-limit games with blinds of 2/3, 3/5 and 5/5 cannot be duplicated. More rarely there are games with three blinds, such as 1/2/4 and some higher stakes games have an ante as well. It's impossible to duplicate these.
My local club has 1/2 no-limit with a $100 maximum buy-in (50 big blinds). There is a $5 drop once the pot reaches $19 after the flop. I can't reproduce this buy-in NOR the rake structure. I've got to set the buy-in to whatever, then manually reset the stacks to $100 -- then, after each hand, if the pot is over $19, I have to manually subtract the $5 rake from the winner's stack. Then, when someone busts out or has very low chips, I cannot simple click RELOAD -- I have to set player's stack back to $100 manually.
No combination of blinds and starting stacks can be selected to give a capped 50bb NLHE game.
Also, players generally tip the dealer after winning a large pot. This option should also be included.
2) AI players should be able to be set to top-up when they get low and/or re-buy when they bust out and/or be replaced by another random player with a full stack without requiring the user to manually fiddle with this.
3) Tournaments -- well these just do not reflect what exist in the current live poker world. Re-buy and add-on tournaments are extremely common, yet not implemented. (Oddly, the included tournament clock DOES enable re-buys and add-ons, but not the main program. That's just weird.) Other popular variations like Bounties are ignored.
4) Hot-keys (and on-screen buttons) need to be more user adjustable. "Check" and "Call" both use the same hot-key -- the cannot be set for separate keys, inevitably leading to accidental calls. There is a hot key (and on-screen button) for 1/2 pot, full pot and 2x pot, but no user adjustable setting for very common bets like 2/3 and 3/4 pot
5) Further showing that the program is over a decade out of date, user is given the option of "compact window" (800x600) or "full window" (1024x768). Both of these choices are absurdly out of date as they are both have an aspect ratio of 4/3. ALL computers purchased in the last 5 or maybe 10 years are windscreen (16x9) and have much higher resolution. The laptop I'm typing on is over 5 years old -- it's 16x9, 1366x768. It isn't so much that this is a problem using the program, it just shows that no one is really doing the bare minimum to keep this software up-to-date.

hi frenz

$
0
0
i'm new to poker, and would love to use computers as my poker trainer. Currently, I use PSP

Hi y'all

$
0
0
I am leisure poker player who has played live and online for years.
Not very successfully though.
I am hoping i can learn better strategy so i can win a bit more often and get to enter some better amateur tournaments.

I do some programming for my job where i work on Oracle programming SQL and PL/SQL.

Wink

Who is Lola?

$
0
0
I made a custom table and inserted a bot named "Lola." It is one of the better playing bots and I would like to look its settings in the Opponent Manager; however, it's not listed.

The unorthodox preflop strategy of the fixed limit hold'em bots

$
0
0
Hi,

I'm a fixed limit player, and have just downloaded Poker Genius and started playing 6-max vs Poker Genius's bots, more precisely vs the profile named Hari.

I got surprised when I saw them open limping quite frequently, because open limping is considered to be a weak and exploitable play among FL experts. So I wonder why these bots which are considered to be good still open limp, what would be the explanation for that ?

I also wonder why they limp preflop monsters in 5% of the time, I'm quite sure that raising AA has higher EV than limping it. Balancing is the limping range is a reason but it is hard to imagine that that 5% makes a difference, a difference which makes more profit on the limping side than on the raising side.

Is there here from the designers/devs of these bots who could give me an explanation on these things ?

Online poker - Private Tournament?

$
0
0
Does anyone know of a online site where one can set up a private game?

I have a group that would like to play together, but right now we don't have a physical venue to play. So I was wondering if there was an online site that we could set up our own 'private' game. We can handle the money ourselves outside of the site - we just need a place to play together on our own.

I looked at bluffave, but as far as I can tell it doesn't work. Even the Admin's last post was a year ago, saying the server was down and he reset it.

Thanks in advance,
Lou

Writing a Poker bot

$
0
0
Bots are written in Java using the provided Meerkat API. Check out the opentestbed project on Google Code. In there, you can find some bot examples. For example, here is the source for the ubiquitous AlwaysCallsBot.

To use a bot, you compile the source file into a Java source file. For example, if you had a bot in MyBot.java, the following line would build the class as required for inclusion in Poker Genius. (And, assume that I was not following the standard Java practice of using com.x.y package nesting. MyBot is in the root package.)

Code:
javac MyBot.java -cp meerkat-api.jar

Then, given the class file, you need to package it into a jar. Again, given MyBot.class execute:

Code:
jar cvf MyBot.jar MyBot.class

At this point, the code has been compiled and packaged but Poker Genius also requires a .pd file. (I think that is an initialism for “Player Definition”.)
You can look through the already present player definition files that are included with Poker Genius.

On OSX, they exist in the directory:
Code:
/Applications/pokergenius.app/Contents/Resources/Java/data/bots/

On Windows:
Code:
C:\Users\YOURUSERNAME\AppData\Roaming\PokerGenius\logs\players

Externally written poker bots are actually plugins, and they have a different class loader. This is specified in the PD file. Continuing the MyBot.java example, here is the relevant MyBot.pd file.

Code:
# All plug-ins must run through the following class:
PLAYER_CLASS=PlugInOpponent

# put your bot's full class name here:
BOT_PLAYER_CLASS=MyBot

# put the path to your jar file here (relative to the base, I think)
PLAYER_JAR_FILE=data/bots/MyBot.jar

# Your Bot's name:
PLAYER_NAME=MyBot

# Your bot engine name:
AI_NAME=MyBot

# Options for your Bot:
NO_LIMIT=true

Now, the both MyBot.pd and MyBod.jar need to be copied to:
Code:
- for Windows 7/ Windows 8 (32-bit): C:\Program Files\PokerGenius\data\bots\

- for Windows 7/ Windows 8 (64-bit): C:\Program Files (x86)\PokerGenius\data\bots\

- for Mac OS X: copy these files inside the application bundle into Contents\Resources\Java\data\bots\

Now, start Poker Genius, and click “Ring Games” under “Play Games”. Then, navigate to the “Opponent Manager” under:

Code:
Window » Opponent Manager

Click the import botton, and find your PD file. I think it was meant to work automatially, but it has been flaky in my experience, so I just start from here. Import your bot, then restart the Poker Genius. Go to “Ring Games” again, and go to the “Full Ring Mixed” game in the “No Limit” section. There will be 10 seats with the types of players to be seated on the right hand side. Click one, and a menu will pop up. Click MyBot. Then, click “Load Table”. Your bot should now be playing poker.

Need a "Full Screen" option

$
0
0
I realize this has been mentioned in past threads, but it looks like your forums are bordering on moribund, so I'm freshening it up with my newbie take: you really, really need to enable a full-screen view for lcd widescreen. I use this program primarily on a tablet and it's hard to read or choose menu items with the 2/3 screen maximum view in the current version. Enabling larger card icons would also be nice.

I really like your program and now that the Wilson softwares are off the market (for whatever reason: no announcement why they're gone, no announcement if they'll ever be back) Your software is almost the only serious training and practice software available. I think you need to advertise far and wide and get your product available at Amazon.com. The market is your oyster, now is your time Exclamation

Need to clarify rake descriptions

$
0
0
I haven't seen anyone else mention this, but you need to include on the "rake" menu simple descriptions (i.e., "$1/pot, $5/pot, etc.") rather than just casino names. Most of us will have no idea what rake scheme goes with these particular web sites or casinos. A "+toke" version of rakes would be helpful ("$1/pot plus 1sb toke") for those who indulge that habit to see what it really costs them...Undecided

Tablet screen doesn't recover from resize

$
0
0
I don't know if this problem is tablet-specific or whether it just wouldn't come up on a static pc, but when I tilt my tablet enough to send it to vertical axis the table compacts and the right menus cover the right half of the table; I haven't found any method or instructions for recovering the full table view other than abandoning the game by closing/reopening the program...

Would like to see a real-world shuffle algorithm

$
0
0
I haven't seen any discussion of the deal randomization algorithm but I feel as though the shuffle exhibits some of the not-quite random behavior I see on lesser softwares and handhelds: too many flops containing 2 of the same cards I've just folded, beyond what I imagine the math would suggest. I would love to see you develop a shuffle engine that simulates what a "Shuffle-Master" machine does to a deck of cards; at least if the result is not truly "random" it is helpfully non-random. If a shuffle-master takes 4 decks (I'm not sure: maybe just 2) the algorithm would alternate 4 virtual decks and "shuffle" them according to a simulation of the manipulations of the Shuffle-Master machine (starting from a deck inserted after typical dealer pickup order of folded hands), so that residual clumping characteristics (if any) are preserved. These things matter much more in Blackjack, which doesn't use machine shuffling, but I suspect the machines used at poker tables are patterning the shuffle more than players realize...

Hope you survive and thrive!

$
0
0
Greetings, I've just purchased your product because I needed a practice tool for Limit Hold'em and couldn't find any satisfactory software now that the Wilson Turbo series has disappeared from the market. (If the developer has just pulled it to upgrade them for Windows 10 they've made a big mistake by not announcing what they're up to). I discovered "Poker Genius" entirely by accident and I'm very impressed with it. I believe there's a niche for American players who don't want to get caught up in legality issues of playing on the web, who can't afford to lose money paying "tuition" on live web games, or, apparently, women who want quality practice without dealing with macho young men. In some respects your AI players offer a better training experience than playing against weak humans. I want to encourage you to advertise more widely and invest what you can in developing it because there are so few quality competitors for what you do left in the market. It's up to you to do what's best for your business, but I just want to post this feedback to let you know that you've got a good thing here.

Your forums are lightly used but not abandoned; if your software begins to sell well you'll know quickly by how activity picks up here. Good luck to you, or as the man said, live long and prosper...

Multiple Tables

$
0
0
Is it possible to play multiple tables on poker genius software? Thanks

Celebrity scandals.

$
0
0
[Image: CA6ZLZKWkAMx4B1.jpg:large]
After two years of being together Bradley Cooper and Suki Waterhouse have finally split Bradley Cooper and Suki Waterhouse have broken up. The 2 year long relation between the two has finally come to an end. However what isn’t sure about the split between the two is whether it is permanent or a temporary split.

However we saw that the 23 year old Suki Waterhouse did attend the Oscars last month with Bradley Cooper who has turned 40 now. The 40 year old actor was nominated for his work in American Sniper.

The couple was also accompanied by Cooper’s mother at the Oscar Award ceremony. Moreover some sources have it that the couple has taken a break from the relation due to their busy schedules.

I Believe Hello is Appropriate

$
0
0
Hello to everyone. I am a "Greenhorn" to the beauty of Poker. Have been in a Thursday night group for about 3+ years now and got tired of being the 'designated' loser. That's been my problem since I was first taken to the cleaners back in 1973, when I was in the Navy. I have always felt like I should count the number of players at the game and just divide up my cash by however many guys were at the table. Just save myself the frustration and pass out my cash up front. Huh Needless to say I stayed away from the card table until 1983 when I was on an offshore drilling rig. I tried the game again and again the same result; count the players and pass out my cash. Angry
I never sat at another table for almost 30 years; then in 2012 I was invited to sit in at our Thursday night game ($10.00 'buy in'), so I figured $10.00 bucks for a night out--I could live with that.
I got a book about a month ago "Poker for Dummies" (thinking the title was appropriate to me Blush); did what those guys said and son-of-a-gun if now I am not the "designated loser" anymore!! Tongue
Needless to say I am starting my own Poker University to really LEARN this game and I am hoping that Poker Genius will be a part of my curriculum.
So I am open to any suggestions from just about anyone and Thanks for having me here!
Madd Matt

Is there any active development going on with this?

$
0
0
I bought a few weeks ago, and as far as I can tell it's pretty much the original Poker Academy with updated graphics. Which is fine in itself, I knew what I was paying a license for.

But there hasn't been an update since April 2014. Is there any active development going on? And if you have the source, would you consider allowing people to work on the project, so so we can get things we want to see without re-writing the whole application.

Push/fold Strategy

$
0
0
Hello,
Before I purchase Poker genius, I need to know how it can help me with push/fold strategy with short stacks in MTTs.

Also with calling ranges vs short stacks who hav pushed already.

Can poker genius do this? The website doesnt really tell you what the software does specifically, the homepage just seems like a bunch of testimonials with out any detail.

Can i belive advice on Poker Genius

$
0
0
i mainly play 6 max cash game. when try PG i see on 6 max table bot like open limp and PG suggest me do like this. I not belive openlimp on short-hand is protfitable move.
Are you use code from table 10 for short hand ?[/code]

Importing PokerStars Game Logs

$
0
0
When I try to import my game logs from pokerstars, the software tells me "cannot find parser". How can i specify a parser? Do I really have to write one myself?
Thanks in advance
Viewing all 707 articles
Browse latest View live