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

Level length and re-entry in tournament specification

$
0
0
Hi All,
I am trying to use Poker Genius to simulate the same arrangement my friends and I use when we meet for our poker nights. In short, it's a 1-level, unlimited re-entry, timed 1-table NL tournament with a conventional 70-30% payout for the two players with the highest stacks when the time is out.

I realise this is not too standard, but I can't make the same arrangement work in Poker Genius, for three reasons:

(i) I can't tell where re-entry is configured when creating a new tournament template.

(ii) I can't configure a tournament to have 1 level only. When I delete all extra levels and save, the level settings are reset to three and to standard blind sizes. There is a workaround though: I configure level 3 the way I need and then set the tournament to start from level 3 (duh!).

(iii) Not only I can't tell the level not to have a time or an unlimited number of hands, but I can't put anything bigger than 120 hands in the level length setting.

Hope you can suggest how to mange this. Thanks,

Gianfranco

Limit the hand evaluator to the number of players who are actually in play

$
0
0
It's all in the subject and quite obvious: limit the hand evaluator to the number of opponents who are actually in play. What's the point to calculate that for 9 opponents when the table size is 6, for example?

Thanks,

G.

Sexy & Charming One Piece Swimsuits as Summer

$
0
0
Whether at the shore swimming pools are fitting for wearing a one-piece swimsuit manner Engaging Shuiyu dot prints with deep V low-cut system led according the mouth,nearly the neck and shoulder belt chart enormous district halter cut even one-piece swimsuit quite sexy! Waist burrowing hack with lof

hi frenz

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

Hi to all

$
0
0
Hi nice to be a member in this group.

Win 10 Activation Fails

$
0
0
Windows 10 Activation Fails: says not online (false).
Also bogus messages about screen size.

Need windows 10 code + not getting response

$
0
0
I purchased the Poker Genius software in Feb 2015, recently upgraded to Windows 10 and now my Poker Genius software / activation code isn't working much like others who have posted on the Poker Genius forum + facebook page. Poker Genius did a good job in sending them new activation codes, but over the last 2 weeks I have sent multiple messages to Poker Genius at their support email address, their support Skype account + their facebook page and haven't heard back. Please email me my code that will work on windows 10 so I can use the software I paid for. Thanks.

Hi friends

$
0
0
Myself John Parker, I am working in private software company. I am happy with this site.

hello Every one

$
0
0
Hello everyone, i am Dave, newly joined to this group. I like listening to music.

And store in New year Discount for fifa 17 coins

$
0
0
gastric acid, which makes their ability of meat digestion relatively poorer than other types. If they take in a large number of meats but could not digest, it is easy to transform into fat

and store in New year Discount for fifa 17 coins body to cause obesity. Therefore, if they want to lose weight, they should be cautious in eating beef and mutton, and it is better to replace with fresh fishes and chicken;

they should take in more vegetables Xmas Discount for fifa 17 coins, especially bean products; if you really want to become thinner, you could supplement vegetable protein. The intake of tofu and grains in recipe could replenish

Offer More This Year by Not "Offering" at All – 3 Simple Guidelines, and One Perfect

$
0
0
You've heard it said that individuals love to purchase, yet prefer not to be sold.

No place is this more exemplified than in the social prime example of the utilized auto businessperson—and its online comparable, the yellow highlighter direct mail buy email list. Working in deals isn't viewed as an altogether fair method for gaining a living.

However individuals keep on loving purchasing autos—and each other thing you can envision.

Since we are individuals who offer professionally, we have a tendency to accept this shows an issue: We have to motivate individuals to do what they cherish (purchasing)… however without them understanding that is what we're doing.

All things considered, this is precisely the sort of suspecting that makes us feel like deals is diligent work, and makes other individuals detest us.

Obviously, it's somewhat more confused than that by and by, yet that is the real trick. What's more, when you do it, your charismatic skill is totally "secretive"— it goes unnoticed, on the grounds that you're quite recently helping your prospects to get what they need. No weight strategies, influence traps, control strangle holds or some other jabber.

So here are three straightforward strides you can take to guarantee your persuasiveness is "secret" this year. On the off chance that you rehearse them day by day you'll shield yourself from slipping into the simple trap of supposing you need to "get" your prospects to do anything. Furthermore, on the off chance that you utilize these tips as an agenda for your current deals and promoting forms, maybe you'll discover a few spots to enhance it—and your primary concern.

1. Try not to attempt to control results that aren't dependent upon you

This is our great oversight. We attempt to control our client's choice to purchase. Be that as it may, the main individual who can control that is… our client. We have no control over this.

When we attempt to control the wrong result, our client detects we're attempting to assume responsibility of his choice—and he doesn't care for it one piece.

This may appear like a heartless thing to do, and this case is clearly lovely ham-fisted for clarity. Be that as it may, sales representatives really do this sort of thing all the time in more unpretentious ways, and it regularly prompts to purchaser's regret.

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

7 Laws of Sales Funnel Physics Every SaaS Business Needs to Know

$
0
0
Back in school, I went by to this summary pizzeria shop called Sammi's.

Their logo had a photo of a pyramid on it. Nobody comprehended what that needed to do with pizza.

I pitched Sammi over and again on my startup's instant message coupon item at the buy email list. He never purchased.

In any case, I'll always remember the time I saw him hand a $200 check to some child offering a promotion from a nearby magazine like it was nothing.

Two-hundred bucks resembles a great deal of cash when you're a nineteen-year-old school kid. Also, particularly when every one of your clients are on a free trial.

What made Sammi purchase a print advertisement however not what I was putting forth?

The instruction you have to end up distinctly a successful advertiser is only a great deal of little encounters that way.

From this wide blend of encounters, I've possessed the capacity to watch a few achievement designs. These achievement examples are pertinent to each business promoting itself on the web—however particularly SaaS organizations.

I'm disclosing to you this, since what I'm going to impart to you is not simply hypothesis.

This is about individuals. It's about the general population who are stuck in your business pipe. It's about the general population who haven't caught wind of your item yet. What's more, it's about the general population who are your rivals.

While individuals may not generally carry on in an anticipated way, they are impacted by the Laws of Sales Funnel Physics.

In the event that you need to bring about development in how your business pipe changes over, you need to roll out a critical improvement to your business pipe—the duplicate, the structure, the outline.
[Image: _201512211103138884_LatestDatabaseLogo.jpg]
Whatever enormous outcome you are hoping to deliver, be set up for the change to be huge from the client's point of view.

That last part is critical, on the grounds that you are attempting to impact your objective client, and changes that appear to be noteworthy to you may not be that not quite the same as their perspective.

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.

Olá Brasil

$
0
0
Meu nome é Julio Cesar sou do Brasil! Abraços a todos!-benzóico.

IMPORTED - CALCULATOR

$
0
0
Buy your product, have no video on youtube and I intend to make videos to sell to the Brazilian
How do I import pokerstar's hand history? I could not care.
Can I track a hand in real time? The Robot gives me the best move advice PUSH, FOLD, ALLIN?

The cool would be your own calculator running in real with pokerstars to know as percentages against 1,2,3,4 ... 9 players.

The robbo is cool, I want to see with the importer of hands history, it would be cool to play the same tournament again and see the advice of Robot.

I wrote it right, you understood, anything tell me.

Thank you!

cheap jordans for sale online O604 127 v757 cheap jordans online free shippping

$
0
0
The battery source is connected to the charging unit. The battery is charged to its maximum strength. The battery will show certain signs when completely charged. Most toys remote control will signify a flash or will show a blinking light. The signify that the battery has been fully charged. The nex

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

Best Place To Buy Yeezy 350 V2 for sale in Columbia?South carolina,USA

$
0
0
Following Yeezy Boost 350 its XENO, floral print options and many other iterations, the adida cheap yeezy 350 v2 s Originals ZX Flux continues to receive various enhancements as the German sportswear company now reveals a Cheap Adidas Yeezy Boost n upcoming ZX Flux Engineered Mesh pack.Maintaining its signature design overall, this particular silhouette is rev
Viewing all 707 articles
Browse latest View live