![]() |
|
#21
|
|||
|
|||
|
[ QUOTE ]
Hmmm. When I open the Option dialog myself, and then run the script...it works. Maybe the problem is my screen resolution is 1600x1200? --Casey [/ QUOTE ] I have the same resolution, works fine for me. Are you sure you have the latest ChipReloader version? Never mind the version numbers in the code (I might have forgot to change that), just go to script webpage and try using the current one. Adde |
|
#22
|
|||
|
|||
|
[ QUOTE ]
Why does my computer make a loud beep whenever I run the reload script? [/ QUOTE ] This is just feedback to tell you the script has finished. If you don't like it, remove all lines in the script that start with "SoundBeep". Adde |
|
#23
|
|||
|
|||
|
[ QUOTE ]
can you make this so that it can reload to an amount other than the full buyin? [/ QUOTE ] Not easily. I think it's possible to reload to minimum buyin at Stars, but for other amounts it seems tricky, Adde |
|
#24
|
|||
|
|||
|
Occasionally when I use this script it goes mad and starts moving my tables all over the place and I have to close party and restart it.
ANy idea why this would be? |
|
#25
|
|||
|
|||
|
[ QUOTE ]
Occasionally when I use this script it goes mad and starts moving my tables all over the place and I have to close party and restart it. ANy idea why this would be? [/ QUOTE ] I have no idea. Try restarting just the script next time and see if that helps. (Right-click Green AHK icon in the system tray and choose Reload This Script.) Adde |
|
#26
|
|||
|
|||
|
Adde, how difficult would it be to implement an auto-reload feature that automatically reloaded once you, say, have less than 95% of the max buy in in your stack?
|
|
#27
|
|||
|
|||
|
[ QUOTE ]
Adde, how difficult would it be to implement an auto-reload feature that automatically reloaded once you, say, have less than 95% of the max buy in in your stack? [/ QUOTE ] For Stars, quite difficult. For Party, an earlier version did that, but it was far from perfect, and people had difficulties getting it to work so I removed that code. Adde |
|
#28
|
|||
|
|||
|
[ QUOTE ]
[ QUOTE ] Adde, how difficult would it be to implement an auto-reload feature that automatically reloaded once you, say, have less than 95% of the max buy in in your stack? [/ QUOTE ] For Stars, quite difficult. For Party, an earlier version did that, but it was far from perfect, and people had difficulties getting it to work so I removed that code. Adde [/ QUOTE ] OK....out of curiosity, why is this? Is it difficult to detect what your stack size is? |
|
#29
|
|||
|
|||
|
[ QUOTE ]
OK....out of curiosity, why is this? Is it difficult to detect what your stack size is? [/ QUOTE ] Yes, exactly. I had to get stack size from the hand history file, and that would make the numbers lag by three hands. It was too messy to handle the script "support", so I pulled the plug. Adde |
|
#30
|
|||
|
|||
|
[ QUOTE ]
[ QUOTE ] Hmmm. When I open the Option dialog myself, and then run the script...it works. Maybe the problem is my screen resolution is 1600x1200? --Casey [/ QUOTE ] I have the same resolution, works fine for me. Are you sure you have the latest ChipReloader version? Never mind the version numbers in the code (I might have forgot to change that), just go to script webpage and try using the current one. Adde [/ QUOTE ] I have the latest script and the latest version of AHK (1.0.44.07). So I just restarted the script, opened a single table on stars, played a few hands, then hit the hotkey (Default--F12). Maybe the lines executed will help you to help me... Thanks, Casey <font class="small">Code:</font><hr /><pre> 028: cr_hotkey_reload = F12 032: cr_reload_party = 1 033: cr_reload_stars = 1 046: cr_scriptpad_command_header = Chip Reloader 047: cr_scriptpad_command_name = Reload All Tables 048: cr_scriptpad_command_label = CR_ReloadAll_Label 049: cr_scriptpad_command_enabled = 1 051: ahk_version = 1.0.44.07 052: if A_AhkVersion < %ahk_version% 060: cr_web_page = http://overcards.com/wiki/moin.cgi/PokerReloader 062: Hotkey,%cr_hotkey_reload%,CR_ReloadAll_Label,UseEr rorLevel 064: Goto,CR_Scriptpad_End 252: Exit (70.56) 069: CR_ReloadAll() 077: if (cr_reload_party) 078: CR_ReloadParty() 086: SetTitleMatchMode,2 087: WinGet,idList,list,Good Luck ahk_class #32770,,PartyPoker.com: 088: Loop,%idList% 093: } 079: if (cr_reload_stars) 080: CR_ReloadStars() 167: SetTitleMatchMode,2 168: WinGet,idList,list,Logged In as,,PokerStars Lobby 169: Loop,%idList% 170: { 171: winID := idList%a_index% 172: CR_ReloadStarsTable(winID) 178: WinGetPos,x,y,w,h,ahk_id%winID% 179: px := Floor((w/800) * 400) 180: py := Floor((h/573) * 80) 181: WinActivate,ahk_id %winID% (0.10) 182: CR_PostLeftClick(px, py, winID) 245: PostMessage,0x201,0x0001,((y*65536)+x),,ahk_id%tab le_id% 246: PostMessage,0x202,0,((y*65536)+x),,ahk_id%table_id % 247: } 184: SetTitleMatchMode,2 185: WinWait,Options,Add More Chips,3 (3.00) 186: WinGet,winID,ID,Options,Add More Chips 187: if (winID = "") 188: Return 173: } 174: } 081: SoundBeep,,50 (0.06) 082: } 070: Return (10.35) </pre><hr /> |
![]() |
|
|