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
  #11  
Old 09-24-2007, 09:39 AM
terance terance is offline
Senior Member
 
Join Date: Jul 2007
Location: fapfapfap
Posts: 100
Default Re: StarsGamepad improved, works with any pokerroom now

i guess this script doesn't reload ?

regardless: great work [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #12  
Old 09-24-2007, 11:58 AM
Thois Thois is offline
Member
 
Join Date: Apr 2007
Posts: 43
Default Re: StarsGamepad improved, works with any pokerroom now

I have used it for a phew days now, it works quite well
Reply With Quote
  #13  
Old 09-24-2007, 01:25 PM
terance terance is offline
Senior Member
 
Join Date: Jul 2007
Location: fapfapfap
Posts: 100
Default Re: StarsGamepad improved, works with any pokerroom now

[ QUOTE ]
I have used it for a phew days now, it works quite well

[/ QUOTE ]

what do you doo if i only want to play 2 tables ?

and do you have the original StarsGamePad ? (i would like it to be able to rebuy, and overcards.com is down)

also i cant move my mouse with the pointer when i have started the script, and have to reboot in order to get control again (i am using logitech dual action game pad) is there some way to avoid this?
Reply With Quote
  #14  
Old 09-24-2007, 01:51 PM
Mogobu The Fool Mogobu The Fool is offline
Senior Member
 
Join Date: Sep 2005
Location: On teh internets.
Posts: 617
Default Re: StarsGamepad improved, works with any pokerroom now

Overcards should back in a moment.
Reply With Quote
  #15  
Old 09-24-2007, 02:19 PM
Thois Thois is offline
Member
 
Join Date: Apr 2007
Posts: 43
Default Re: StarsGamepad improved, works with any pokerroom now

if i want to play only 2 tables i just right mouse click somewhere in the dark in the right-top of my desktop for tables 3 and 4.

WTF, you cant move your mouse??? Thats weird, did you have that problem with StarsGamePad as well?
Reply With Quote
  #16  
Old 09-24-2007, 04:56 PM
terance terance is offline
Senior Member
 
Join Date: Jul 2007
Location: fapfapfap
Posts: 100
Default Re: StarsGamepad improved, works with any pokerroom now

[ QUOTE ]
if i want to play only 2 tables i just right mouse click somewhere in the dark in the right-top of my desktop for tables 3 and 4.

WTF, you cant move your mouse??? Thats weird, did you have that problem with StarsGamePad as well?

[/ QUOTE ]

Yes, I tried PokerGamePad now (same script it looks like. When I start these script it seems that the mouse constantly keeps "clicking" and is forced to stand pat in the place you 've used the game controller to set it. E.g. if I press button 5 to send the cursor to window 1, i cant move the mouse somewhere else. It just bounces back to "window 1 position". This means that I have to reboot when I dont want to play anymore (or sit out at a table) [img]/images/graemlins/tongue.gif[/img]

Guess I could try and reinstall AHK etc.. see if it helps..

Anyhow, the mouse is supposed to be completely free to use while the script is running?
Reply With Quote
  #17  
Old 09-24-2007, 06:58 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: StarsGamepad improved, works with any pokerroom now

[ QUOTE ]
[ QUOTE ]
if i want to play only 2 tables i just right mouse click somewhere in the dark in the right-top of my desktop for tables 3 and 4.

WTF, you cant move your mouse??? Thats weird, did you have that problem with StarsGamePad as well?

[/ QUOTE ]

Yes, I tried PokerGamePad now (same script it looks like. When I start these script it seems that the mouse constantly keeps "clicking" and is forced to stand pat in the place you 've used the game controller to set it. E.g. if I press button 5 to send the cursor to window 1, i cant move the mouse somewhere else. It just bounces back to "window 1 position". This means that I have to reboot when I dont want to play anymore (or sit out at a table) [img]/images/graemlins/tongue.gif[/img]

Guess I could try and reinstall AHK etc.. see if it helps..

Anyhow, the mouse is supposed to be completely free to use while the script is running?

[/ QUOTE ]
Try replacing AHK's mouse clicks with posted mouse press/release messages:

<font class="small">Code:</font><hr /><pre>PostRightClick(x, y, table_id, activate=1) {
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
; window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
If activate
WinActivate, ahk_id%table_id%
PostMessage, 0x204, 0x0001, ((y&lt;&lt;16)^x), , ahk_id%table_id%
PostMessage, 0x205 , 0, ((y&lt;&lt;16)^x), , ahk_id%table_id%
}</pre><hr />
This way calls to this function don't effect the real mouse pointer and the never mess up because a window poped up infront of another.

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #18  
Old 09-25-2007, 07:55 AM
Thois Thois is offline
Member
 
Join Date: Apr 2007
Posts: 43
Default Re: StarsGamepad improved, works with any pokerroom now

I use the logitech dual action gamepad as well, and here the mouse is completely free. The script is only supposed to take over the cursor for like 1 second after you have pressed a button on your gamepad, apart from that the mouse should be completely free to use.

Weird stuff
Reply With Quote
  #19  
Old 09-25-2007, 08:19 AM
terance terance is offline
Senior Member
 
Join Date: Jul 2007
Location: fapfapfap
Posts: 100
Default Re: StarsGamepad improved, works with any pokerroom now

[ QUOTE ]

Try replacing AHK's mouse clicks with posted mouse press/release messages:

<font class="small">Code:</font><hr /><pre>PostRightClick(x, y, table_id, activate=1) {
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
; window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
If activate
WinActivate, ahk_id%table_id%
PostMessage, 0x204, 0x0001, ((y&lt;&lt;16)^x), , ahk_id%table_id%
PostMessage, 0x205 , 0, ((y&lt;&lt;16)^x), , ahk_id%table_id%
}</pre><hr />
This way calls to this function don't effect the real mouse pointer and the never mess up because a window poped up infront of another.

Juk [img]/images/graemlins/smile.gif[/img]

[/ QUOTE ]

so i enter that function in the script and replace all "MouseClick" with "PostRightClick" ?
Reply With Quote
  #20  
Old 09-25-2007, 11:29 AM
terance terance is offline
Senior Member
 
Join Date: Jul 2007
Location: fapfapfap
Posts: 100
Default Re: StarsGamepad improved, works with any pokerroom now

thanks for the effort yukofyork! but i installed ahk+scripts on another machine now and the clicking problem is gone. so i guess theres a problem with my setup [img]/images/graemlins/frown.gif[/img]
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 11:19 PM.


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