Two Plus Two Newer Archives  

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

Reply
 
Thread Tools Display Modes
  #131  
Old 08-25-2007, 09:59 AM
runstop runstop is offline
Senior Member
 
Join Date: Jan 2005
Location: Ottawa
Posts: 255
Default Re: AHK Bet Pot Script for iPoker


Does this work with the mini-table view? (Sorry about being one of those 'Does this do blahblahbalah' without trying it kinda guys. [img]/images/graemlins/smile.gif[/img] )

runstop
Reply With Quote
  #132  
Old 08-25-2007, 01:33 PM
betafemale betafemale is offline
Senior Member
 
Join Date: Jan 2007
Posts: 194
Default Re: AHK Bet Pot Script for iPoker

[ QUOTE ]
is there a script that lets me custimize it, like 3/4 of the pot and so forth?

[/ QUOTE ]

I can do that in my modifyed version of this script. But there are some glitches and features I am going to add before releasing it. Havn't worked much on it lately though.

It is pretty simple though if you wanna modify it yourself:

Modyfy the call to the betpot function like this:

~RButton::
BetPot(0.67)
Return

This will bet 2/3 pot.

Then the first like of the betpot function that looks like this
BetPot()

change that to

BetPot(PartSize)

Then before the

BetSize := FormatBet.....

in the BetPot function add these lines:

If (!Callsize)
{
PotSize := Potsize * PartSize
}

and you can now bet fractions of the pot. Hope that makes sense.
Reply With Quote
  #133  
Old 08-25-2007, 08:15 PM
vortex86 vortex86 is offline
Senior Member
 
Join Date: Feb 2006
Posts: 805
Default Re: AHK Bet Pot Script for iPoker

thx beta, ill work it into my script tomorrow, sounds pretty understandable
Reply With Quote
  #134  
Old 08-25-2007, 08:23 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: AHK Bet Pot Script for iPoker

[ QUOTE ]

I am discussing with _dave_ to have this script merged with his

[/ QUOTE ]

This *will* happen... giving me fits right now trying to remove all the globals (and trying to figure out how great chunks of the code actually do what they do [img]/images/graemlins/smile.gif[/img] )

Is a learning experience [img]/images/graemlins/smile.gif[/img]

dave.
Reply With Quote
  #135  
Old 08-26-2007, 05:52 AM
untergrund untergrund is offline
Senior Member
 
Join Date: Feb 2005
Posts: 143
Default Re: AHK Bet Pot Script for iPoker

http://img301.imageshack.us/img301/9712/pokerutdnl3.png

pokerutd

reload script works, bet pot does not
Reply With Quote
  #136  
Old 08-26-2007, 10:38 AM
untergrund untergrund is offline
Senior Member
 
Join Date: Feb 2005
Posts: 143
Default Re: AHK Bet Pot Script for iPoker

never mind it works now
stupid mistake on my part

ty for the script!
Reply With Quote
  #137  
Old 09-01-2007, 09:17 AM
ontiltsoon ontiltsoon is offline
Senior Member
 
Join Date: Dec 2005
Location: Salling the seas of cheese
Posts: 442
Default Re: AHK Bet Pot Script for iPoker

Hi beta,

Would it be easy to make rightbutton bet the pot and mid buttin bet 2/3?

Thx for ur efort!!!
Reply With Quote
  #138  
Old 09-01-2007, 09:45 AM
dotbum dotbum is offline
Senior Member
 
Join Date: Oct 2006
Location: France
Posts: 311
Default Re: AHK Bet Pot Script for iPoker

I changed the reloader to work with NoIQ miniview, don't know if it's any use to anyone, but here it is anyway:

;;;;;;;;;;;;;;;;;;;;;;;;;;
F12::
Reload()
Return

Reload()
{
ReloadX := 490
ReloadY := 40

ReloadX2 := 460
ReloadY2 := 85

ReloadOKX := 165
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, 250

MouseMove, WindowX + ReloadX2, WindowY + ReloadY2

Click

Sleep, 250

WinGetPos, PopupX, PopupY, Width, Height, A

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

Click

Sleep, 1000

CheckBoxX += WindowX
CheckBoxY += WindowY

PixelGetColor, checkcolor, %CheckBoxX%, %CheckBoxY%

if (checkcolor = "0xFCFAFF")
{
MouseMove, CheckBoxX, CheckBoxY

Click
}
}

RestoreMousePos()

return
}
;;;;;;;;;;;;;;;;;;;;;;;;;;

I haven't tested it much, so use at your own risk! [img]/images/graemlins/wink.gif[/img]
Reply With Quote
  #139  
Old 09-01-2007, 11:42 AM
betafemale betafemale is offline
Senior Member
 
Join Date: Jan 2007
Posts: 194
Default Re: AHK Bet Pot Script for iPoker

[ QUOTE ]
Hi beta,

Would it be easy to make rightbutton bet the pot and mid buttin bet 2/3?

Thx for ur efort!!!

[/ QUOTE ]

Not at all. Follow the instructions above how to modify the script to be able to bet parts of the pot.

But instead of

~RButton::
BetPot(0.67)
Return

you write this (along with the rest of the hot keys, around line 211 in the script)

~RButton::
BetPot(1.00)
Return

~MButton::
BetPot(0.67)
Return
Reply With Quote
  #140  
Old 09-01-2007, 12:01 PM
K䲰䮥n K䲰䮥n is offline
Senior Member
 
Join Date: May 2006
Posts: 3,616
Default Re: AHK Bet Pot Script for iPoker

Would it be possible to make the right button to check the "Fold" or "Check/Fold" box or if it's already Hero's turn just fold?

This was done on the SNG Helper AHK script (by Juk of York).
Reply With Quote
Reply


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 05:43 AM.


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