Open Side Menu Go to the Top
Register
AHK Bet Pot Script for iPoker AHK Bet Pot Script for iPoker

09-13-2007 , 11:11 AM
how to turn off the betpotting function entirely? i only need the mousewheel betsize scrolling function.
AHK Bet Pot Script for iPoker Quote
09-13-2007 , 12:03 PM
Quote:
how to turn off the betpotting function entirely? i only need the mousewheel betsize scrolling function.
Hey,

If you're using my original script remove these 3 lines:
<font class="small">Code:</font><hr /><pre>~RButton::
BetPot()
Return </pre><hr />

/butcha
AHK Bet Pot Script for iPoker Quote
09-13-2007 , 06:01 PM
Anyone have reload script for noiqpoker?
AHK Bet Pot Script for iPoker Quote
09-14-2007 , 12:32 AM
butcha: it still adds a sb from the sb and a bb from the bb to my original bet size. i want to turn off this function completely. it adds weird sizes postflop too, when i reraise big. i want to raise the amount what i see in the betting box.
AHK Bet Pot Script for iPoker Quote
09-14-2007 , 05:44 AM
Quote:
butcha: it still adds a sb from the sb and a bb from the bb to my original bet size. i want to turn off this function completely.
It is the client that does this, not the script. If you are in the small blind and write $3 in the box for example and the blinds are 0.5/1 you will raise to 3.5, if you are in the big blind it will raise to 4. However (unless you posted dead in which case I dunno what happens) outside of the blinds the raise will always be to the amount written.
AHK Bet Pot Script for iPoker Quote
09-14-2007 , 06:32 AM
and whats the cause of the random postflop reraise amounts? it happens preflop too, when i 4bet someone.

example:

SB Check
Hero Bet $8
SB Raise $16
Hero Raise $40 (I raised to $40, damn client raised to $48 WTF?!)
SB Call $32
AHK Bet Pot Script for iPoker Quote
09-14-2007 , 06:47 AM
I had that happen too, but it still is not the script that does this.
AHK Bet Pot Script for iPoker Quote
09-14-2007 , 05:52 PM
Quote:
and whats the cause of the random postflop reraise amounts? it happens preflop too, when i 4bet someone.

example:

SB Check
Hero Bet $8
SB Raise $16
Hero Raise $40 (I raised to $40, damn client raised to $48 WTF?!)
SB Call $32
Isnt that how ipoker does the betting? 40more and not to 40.
AHK Bet Pot Script for iPoker Quote
09-16-2007 , 04:41 PM
Quote:

Isnt that how ipoker does the betting? 40more and not to 40.
yes, this is standard for alot of networks including UB and ongame.
AHK Bet Pot Script for iPoker Quote
09-18-2007 , 01:44 PM
Should it take 1-1.5 seconds for it to respond every time i press the button, even when only trying 1 table? I've never had any problems with anything being slow even when 12 tabling with pahud and pokertracker.
AHK Bet Pot Script for iPoker Quote
09-18-2007 , 02:05 PM
No riwzo, definitely not. It should be very close to instantaneous.
I can't think of anything that would cause this though, so sorry I can't help you further.

/butcha
AHK Bet Pot Script for iPoker Quote
09-18-2007 , 04:31 PM
Quote:
Quote:
It is customary to round up when you're dealing with decimals. 3.5 would round up to 4 instead of 3 in this case
This is not true, while 3.5 should be rounded up, 3.4 should be rounded down. Not that it is a big deal anyways, it only is a problem if you use the mod not as intended (meaning betting 4 instead of 3.5 bb preflop). I personaly think rounding to nearest small blind is best, it works both preflop and postflop (this is how I have it in my script), and will not mess with your preference to raise 3.5 or 4 bb preflop.
Lol obviously 3.4 rounds down, I'm not ******ed. I'm saying .5 rounds up even though it's just as close to 1 as it is 0, that's just the way decimals work. Obviously 3.1 would round down to 3, I didn't mean all decimals round up.
AHK Bet Pot Script for iPoker Quote
09-18-2007 , 06:58 PM
How come there needs to be such a bad attitude on this forum? Here I am trying to help people and just get crap back. Oh well, I guess you all need to wait for the script to merge with the stars one for the complete functionality, coz I am not going to release it, nor answer any questions from now on.
AHK Bet Pot Script for iPoker Quote
09-18-2007 , 08:48 PM
Why do people take everything so personally/seriously? Get a grip.
AHK Bet Pot Script for iPoker Quote
09-19-2007 , 08:23 AM
reload script for carlos poker mini view

############################

Reload()
{
ReloadX := 475
ReloadY := 38

BuyChipsX := 467
BuyChipsY := 84

ReloadOKX := 185
ReloadOKY := 245

CheckBoxX := 471
CheckBoxY := 346

id := GetTableId()
If (NOT id)
Return

TableSize := GetTableSize(id)
If (NOT TableSize)
Return

SaveMousePos()

WinGetPos, WindowX, WindowY, , , ahk_id %id%

MouseMove, WindowX + ReloadX, WindowY + ReloadY

Click
Sleep, 230

MouseMove, WindowX + BuyChipsX, WindowY + BuyChipsY

Click

Sleep, 230

WinGetPos, PopupX, PopupY, Width, Height, A

if (Width = 402 AND height = 265)
{
MouseMove, PopupX + ReloadOKX, PopupY + ReloadOKY

Click

Sleep, 900

CheckBoxX += WindowX
CheckBoxY += WindowY

PixelGetColor, checkcolor, %CheckBoxX%, %CheckBoxY%

; MsgBox, %checkcolor%

if (checkcolor = "0xFFFFFF")
{
MouseMove, CheckBoxX, CheckBoxY
Click
}

}

RestoreMousePos()

return
}
AHK Bet Pot Script for iPoker Quote
09-19-2007 , 06:03 PM
can someone make one for cardoza? I'd be willing to pay a small fee.
AHK Bet Pot Script for iPoker Quote
09-19-2007 , 09:00 PM
Quote:
can someone make one for cardoza? I'd be willing to pay a small fee.
i dont use cardoza but i can make one for you if you send me a screenshot. PM me if interested.
AHK Bet Pot Script for iPoker Quote
09-21-2007 , 02:29 PM
Quote:
Quote:
can someone make one for cardoza? I'd be willing to pay a small fee.
i dont use cardoza but i can make one for you if you send me a screenshot. PM me if interested.
theres a screenshot posted just a few posts abovve mine.
AHK Bet Pot Script for iPoker Quote
09-22-2007 , 02:30 PM
It works for me on noble there is like a 1second lag for the bet to come up but not bad. But I have encountered a problem, when I put up my PAHUD the script starts malfunctioning, placing bet numbers into the chat and such. Any known solutions?
AHK Bet Pot Script for iPoker Quote
09-23-2007 , 08:44 AM
I cant get this to work...
Can someone please post the complete script w the betpot/autoreload
Playing NoIQPoker.
AHK Bet Pot Script for iPoker Quote
09-30-2007 , 06:27 AM
Hi, brilliant script, I wish I had've checked this out ages ago. Anyway I'm on Uncover Poker and the bet pot function works fine but the mouse wheel does nothing. I tried it on Paddy Power and the mouse wheel works fine. Any ideas why it isn't working on Uncover Poker?

Edit: I just checked through the code and I see the problem is it's returning false for RaiseLocationFound in the ChangeBet function in Uncover Poker whereas in Paddy Power it's returning true. I can't understand how it can read the table action and then set the pot bet fine no problems but it can't read the action when scrolling the mouse wheel?
AHK Bet Pot Script for iPoker Quote
10-01-2007 , 08:29 AM
Quote:
Hi, brilliant script, I wish I had've checked this out ages ago. Anyway I'm on Uncover Poker and the bet pot function works fine but the mouse wheel does nothing. I tried it on Paddy Power and the mouse wheel works fine. Any ideas why it isn't working on Uncover Poker?

Edit: I just checked through the code and I see the problem is it's returning false for RaiseLocationFound in the ChangeBet function in Uncover Poker whereas in Paddy Power it's returning true. I can't understand how it can read the table action and then set the pot bet fine no problems but it can't read the action when scrolling the mouse wheel?
My mouse wheel function doesnt work anymore either , im on noiqpoker. It was working last week so dont know what happened.
AHK Bet Pot Script for iPoker Quote
10-15-2007 , 05:40 PM
can anyne help with this... bet pot was woking perectly until today when my client did an update..... the only change i can see is in the mini view the cards are now bigger than they were...

Bet pot still works fine in full screen but the wheels doesn't work anymore in the miniview.....




any help appreciated... small fee offered
AHK Bet Pot Script for iPoker Quote
10-15-2007 , 05:48 PM
sup IveGotGills?
AHK Bet Pot Script for iPoker Quote
10-15-2007 , 06:55 PM
i'd love for my minview cards to be that big haha
AHK Bet Pot Script for iPoker Quote

      
m