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
  #31  
Old 02-11-2006, 06:14 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: A script you might like

Hehe, just one slight adaption needed for me:

Joy7::
Critical
<font color="red">Unplug, USB</font>
GetBeer, MyFavorite, Cold
return

[img]/images/graemlins/smirk.gif[/img]

I just opened up the joypad, then put back together and all working again (not a clue why though, but not complaining lol), so maybe my luck changed! [img]/images/graemlins/smile.gif[/img]

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #32  
Old 02-11-2006, 06:24 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: A script you might like

I swear it’s that malicious GUI. First it made you trip over your pad, the it made it work again.

I’m going crazy… I was testing the script and all I did was change a line in one of the hotkeys and now when I try to run it, it tells me the GetTargetWrap() function contains another function, which it absolutely doesn’t.

That GUI has supernatural powers. It’s playing with us. [img]/images/graemlins/mad.gif[/img]Gives me the creeps.

*shudder*
Reply With Quote
  #33  
Old 02-11-2006, 07:05 PM
Mogobu The Fool Mogobu The Fool is offline
Senior Member
 
Join Date: Sep 2005
Location: On teh internets.
Posts: 617
Default Re: A script you might like

My housemate managed to get this to work for a keyboard hotkey:

KBzone3::
Wall, Opposite, MakeHole
return

You have to hit the keyboard very hard, but it worked.

Kayboard still works, too, after he found all the keys.
Reply With Quote
  #34  
Old 02-11-2006, 08:23 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: A script you might like

[ QUOTE ]
KBzone3::
Wall, Opposite, MakeHole
return

[/ QUOTE ]

This works real good for old ball-mice too! [img]/images/graemlins/grin.gif[/img]

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #35  
Old 02-11-2006, 08:32 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: A script you might like

New sub-thread needed I think... the old one got so deep getting hard to read [img]/images/graemlins/smile.gif[/img]

All seems to be working fine for me, and the fix-GUI button working fine too (ty! [img]/images/graemlins/smile.gif[/img] ), but just one anomaly left: sometimes (maybe 20% of time) the "Fold" checkbox just won't select, no idea why though? (and for some strange reason AutoResizer's "Auto-Post 1st BB" started failing).

Sleepy again, so maybe it will be clearer as to what is going on tomorrow.

I also gona see if I can use a 6th button for lobby control tomorrow. If I could get it to act as a modifier (which seems possible from what I just read in AHK help), then I hope/think script could be 100% joypad driven.

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #36  
Old 02-11-2006, 09:18 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: A script you might like

[ QUOTE ]
just one anomaly left: sometimes (maybe 20% of time) the "Fold" checkbox just won't select, no idea why though? (and for some strange reason AutoResizer's "Auto-Post 1st BB" started failing).

[/ QUOTE ]

Maybe the new code I added? I haven't had any problems (mainly playing Stud now though, Hold'em is a bankroll killer for me [img]/images/graemlins/ooo.gif[/img]).

Modifiers are possible I believe (Sam posted something a few days ago I think).

Here's a cool hotkey I just wrote; it deals you in/out at every table:

Warning: This will check the auto-post blind checkbox´when dealing in.

Joy9::
Loop, Parse, table_list, `,
{
ControlGet, is_checked, checked, , Button5, ahk_id%a_loopfield%
Control, Check, , Button5, ahk_id%a_loopfield%
If is_checked = 0
{
Control, Check, , Button5, ahk_id%a_loopfield%
}
else
{
Control, Uncheck, , Button5, ahk_id%a_loopfield%
Control, Check, , Button3, ahk_id%a_loopfield%
}
}
return
Reply With Quote
  #37  
Old 02-12-2006, 07:29 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: A script you might like

Hi, just a quick update to say the script going well for me and no problems since the RefreshGUI button added [img]/images/graemlins/smile.gif[/img]

Still confused about the "Fold" checkbox being ignored sometimes but it makes no real difference to the usability (not been quick enough to press alt+1 yet to see if its a joypad only thing [img]/images/graemlins/smile.gif[/img] ).

I will try to look into including Sam's modifiers soon too and see if I can make it totally mouseless.

Not had time yet to try the Deal-in/Deal-out script, but I wish I knew how AHK knows a checkbox is checked (this would help AutoResizer, as this the only thing AutoResizer can't confirm has actually changed when clicked).

Hope the stud going well for you [img]/images/graemlins/smile.gif[/img]

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #38  
Old 02-12-2006, 07:57 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: A script you might like

[ QUOTE ]
Hi, just a quick update to say the script going well for me and no problems since the RefreshGUI button added [img]/images/graemlins/smile.gif[/img]

[/ QUOTE ]

Great. Ain't working for me now [img]/images/graemlins/shocked.gif[/img], but I don't get that error unless I reproduce it, so it's cool. [img]/images/graemlins/smile.gif[/img]

[ QUOTE ]
Still confused about the "Fold" checkbox being ignored sometimes but it makes no real difference to the usability (not been quick enough to press alt+1 yet to see if its a joypad only thing [img]/images/graemlins/smile.gif[/img] ).

[/ QUOTE ]

Strange thing that. I'll play some holdem tomorrow, see if I can find the bug.

[ QUOTE ]
I will try to look into including Sam's modifiers soon too and see if I can make it totally mouseless.

[/ QUOTE ]

I have like 10 buttons. How many combinations is that when I use all 10 fingers? [img]/images/graemlins/grin.gif[/img]

[ QUOTE ]
Not had time yet to try the Deal-in/Deal-out script,

[/ QUOTE ]

Probably not so good for holdem since you lose $$$ when you have to post the blind again after sitting out.
It great for stud though - when I see things are going to get real complicated in a hand I just hit that button and then I can focus and hopefully make some good decision [img]/images/graemlins/laugh.gif[/img].

[ QUOTE ]
but I wish I knew how AHK knows a checkbox is checked (this would help AutoResizer, as this the only thing AutoResizer can't confirm has actually changed when clicked).

[/ QUOTE ]

ControlGet, OutputVar, Checked (OutputVar is set to 1 if checked, 0 if not), , Control, WinTitle [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #39  
Old 02-15-2006, 04:24 AM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: A script you might like

Still working fine and still in love with this script! [img]/images/graemlins/laugh.gif[/img]

I stopped the unpressable fold checkbox thing by just disabling the 'check or fold' stuff (no idea why, but this was the cause of my probs - maybe its just my PC playing up lol). Found I don't use this anyway and still end up pressing check/call rather than check/fold - very few misclicks so far (less than mouse I think!) [img]/images/graemlins/smile.gif[/img]

BTW: I adapted the deal-in/deal-out script to make it so that it unchecks "Auto-Post blind" on all windows, which is helpful for me (when I had enough and need a rest from the bad beats etc, but want to finish my rounds off...) [img]/images/graemlins/smile.gif[/img]

Not had time to hybridize Sam's mouse-less lobby control yet, but will try and hopefully I can use 'mini-lobby' script too (endless list of projects building up and not enough time... lol) [img]/images/graemlins/smile.gif[/img]

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #40  
Old 02-15-2006, 06:15 AM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: A script you might like

[ QUOTE ]
I stopped the unpressable fold checkbox thing by just disabling the 'check or fold' stuff (no idea why, but this was the cause of my probs - maybe its just my PC playing up lol). Found I don't use this anyway and still end up pressing check/call rather than check/fold - very few misclicks so far (less than mouse I think!) [img]/images/graemlins/smile.gif[/img]

[/ QUOTE ]

Okay. Haven't had time to really look into it (difficult to fix this stuff when it only comes up every once in a while) and won't if you don't really need it. I don't need it for stud because that check/fold thing almost never comes up (no free flops from the BB).

[ QUOTE ]
Not had time to hybridize Sam's mouse-less lobby control yet, but will try and hopefully I can use 'mini-lobby' script too (endless list of projects building up and not enough time... lol) [img]/images/graemlins/smile.gif[/img]

[/ QUOTE ]

I'll can do the lobby control - you better get on with your other projects! [img]/images/graemlins/smile.gif[/img]
I was working on it yesterday - the problem is to find a smooth and user-friendly way to handle all the different situations that can come up (no good if you can never remember which button does what [img]/images/graemlins/confused.gif[/img]).
I have also pretty much given up on writing something that lets you select a specific open seat via joypad - I have some nice code that highlights a seat but I can't find an easy way to ignore all kinds of other controls with the same name (which are reported as visible even if I can't see them...).
I just use brute force now - just have it click every friggin button it can find with that name and then close all the "this seat has already been reserved etc." pop-ups. [img]/images/graemlins/grin.gif[/img] Of course this just takes the first free seat it can find - to select a specific seat you'll have to use the keyboard I guess.
Anyway, I hope I can finish this today.
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 06:24 PM.


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