Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

View Poll Results: Should scum thread titles be allowed?
Yes 27 35.53%
No 17 22.37%
Pokeraddict should use his best judgement 32 42.11%
Voters: 76. You may not vote on this poll

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #32  
Old 11-30-2007, 06:48 PM
Xanderz Xanderz is offline
Senior Member
 
Join Date: Oct 2007
Posts: 230
Default Re: PokerPad - AHK hotkey script

[ QUOTE ]
For what reason (other than clicking it) do you need to interact with the raise button?

[/ QUOTE ]
For Party (and the majority of other sites) I use the following function to determine the pot bet size:
<font class="small">Code:</font><hr /><pre>GetBet(factor, pot, call, raise, blind) {
if call {
pot += call
if (call &lt; blind) { ; small blind
bet := blind
} else { ; raise or open bet preflop
bet := raise - call
if (call &gt; bet)
bet := call
}
} else if (raise != blind) { ; big blind
bet := blind
} else { ; open bet postflop
bet := 0
}
pot *= factor
return bet + pot
}</pre><hr />
The raise variable is suppose to be the minimum raise and is used in two different places in that function to get the correct amount.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:36 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.