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
  #941  
Old 04-12-2007, 09:51 AM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: v3.02

I think the Send command probably can't handle joystick buttons.
You could maybe map Joy6 to a key or key-combination and then have your second script send that.
Reply With Quote
  #942  
Old 04-12-2007, 10:31 AM
canta canta is offline
Member
 
Join Date: Sep 2006
Posts: 95
Default Re: v3.02

Lange, the RaiseAny hotkey in TN should hit the allin button.
This is WillHill, right?
It doesnt autobet for you, i thought that made misclicking easy, but maybe most players like that.

Roland, i saw that RaiseAny made an allinbet in the stars.ahk, thats why i did the same in the other casino plugins as well, even though raiseany dont really mean that.
Reply With Quote
  #943  
Old 04-12-2007, 11:17 AM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: v3.02

[ QUOTE ]
It doesnt autobet for you, i thought that made misclicking easy, but maybe most players like that.

[/ QUOTE ]

This should be optional really - I will put it on the to-do list.

[ QUOTE ]
Roland, i saw that RaiseAny made an allinbet in the stars.ahk, thats why i did the same in the other casino plugins as well, even though raiseany dont really mean that.

[/ QUOTE ]

Well, it used to just click the Raise Any checkbox. Then I added support for Stud and decided that it made sense to have it also handle double bets in Stud. Then came NL support - I couldn't see why anyone would use the Raise Any checkbox in NL, so decided it could be used for all-in instead.
This may seem like adding unneccessary complexity, however it's quite nice when playing different game types at the same time.
Of course, it doesn't work that way for all sites...
Reply With Quote
  #944  
Old 04-13-2007, 12:27 PM
LangeErnst LangeErnst is offline
Member
 
Join Date: Apr 2005
Posts: 58
Default Re: v3.02

OK, I'll use the RaiseAny for my allin button. Looking forward to the autobet function.

I am multitabling SNG's on Crypto and enjoys the AttentionQueue function in TN. The tables are cascaded but sometimes when I am done with one tourney the AQ seems to f... up for a moment. The active table are suddenly behind the one I just finished (because of a popup I guess. I have a script that automatically closes the popups) and I have to use the mouse to click the right table.

Is there some sort of way to force the active table to the front of the other tables?

What does the GoQueue function do?
Reply With Quote
  #945  
Old 04-13-2007, 03:50 PM
canta canta is offline
Member
 
Join Date: Sep 2006
Posts: 95
Default Re: v3.02

Ok, Ernst, if you download this again it will autobet. I guess
since it does so at Stars it should be same on all sites.
http://www.overcards.com/wiki/moin.c...igatorWillHill
Reply With Quote
  #946  
Old 04-13-2007, 05:59 PM
LangeErnst LangeErnst is offline
Member
 
Join Date: Apr 2005
Posts: 58
Default Re: v3.02

Works like a charm, Canta. Thanks!
Reply With Quote
  #947  
Old 04-14-2007, 04:20 PM
disco_stu1978 disco_stu1978 is offline
Senior Member
 
Join Date: Nov 2005
Posts: 291
Default Re: v3.02

so I have been trying to read through this whole thread....but it is a bit large. I have found almost everything I am looking for, but am still wondering about one thing. Does this work if you use multiple monitors? I thought I read somewhere it does not, but not too sure.

If not I have a quick question. I use a laptop that is kinda small and will not support 1600 - 1200, so I use another monitor for my table setup. If TN does not work with multiple monitors at this moment, is it possible for me to setup the second montor as the main one, and my laptop set to be my secondary one?
Reply With Quote
  #948  
Old 04-17-2007, 07:42 PM
Don Key E37 Don Key E37 is offline
Senior Member
 
Join Date: Jan 2006
Location: bluff pushing into the nuts
Posts: 724
Default Re: TableNavigator

Full tilt did the update thing and its all messed up for me again. Last time Max helped me, before it was New York Jet I think. Does anyone understand/know how to do this? I know you just have to change the numbers but I don't know how to figure out what to change it to. Any help? God I'm so reliant on this thing now.



[ QUOTE ]
Give this a shot. It's because of the new "Layout" button that all the button numbers increased by one. You can figure this stuff out with the Window Spy utility that comes with AutoHotkey. You just launch it, mouse over whatever button you want to know the number of, and read the result out of the Window Spy window.

<font class="small">Code:</font><hr /><pre>
FoldFullTilt(id) {
string_list = FTCButton12|FTCButton26
match_list = 3|3
clickList(string_list, match_list, id)
}

CallFullTilt(id) {
string_list = FTCButton13|FTCButton28|FTCButton12
match_list = 3|3|3
clickList(string_list, match_list, id)
}

RaiseFullTilt(id) {
string_list = FTCButton14|FTCButton27
match_list = 3|3
clickList(string_list, match_list, id)
}

IsTableWaitingFullTilt(id) {
return ( IsVisCtrl("FTCButton12", id) )
}

PotFullTilt(id) {
ControlClick, FTCButton22, ahk_id%id%
ControlGetText, Pot, Edit1, ahk_id%id%
return Pot
}
</pre><hr />

[/ QUOTE ]
Reply With Quote
  #949  
Old 04-17-2007, 08:02 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: TableNavigator

[ QUOTE ]

I know you just have to change the numbers but I don't know how to figure out what to change it to.


[/ QUOTE ]

I'm doing the same for BetPot right now [img]/images/graemlins/frown.gif[/img]

There may be more for other game types and stuff, but for now on an normal NL table:

Fold: FTCButton11
Call: FTCButton12
Raise: FTCButton13
IsTableWaiting: FTCButton11 (fold button always present on waiting table)
Pot: FTCButton21

These are only the main action buttons, not the advance ones (not done those yet)

Best to remove the adv. ones for now until their new numbers are known - strange things might occur otherwise.

EDIT:

this one is unsafe - is it even in the newest TN code?
<font class="small">Code:</font><hr /><pre>
PotFullTilt(id) {
ControlClick, FTCButton22, ahk_id%id%
ControlGetText, Pot, Edit1, ahk_id%id%
return Pot
}
</pre><hr />
Reply With Quote
  #950  
Old 04-17-2007, 08:17 PM
Don Key E37 Don Key E37 is offline
Senior Member
 
Join Date: Jan 2006
Location: bluff pushing into the nuts
Posts: 724
Default Re: TableNavigator

I think you got it Dave. Just tried it out at .05 .1 NL and it seemed to be working. Gonna go try and play now and will check back and let you know. Thanks so so much. I just barely figured out how to install this in the first place. Was just guessing and got lucky. I'm terrible with computer stuff like this but I LOVE this program and being able to play with my gamepad. You guys are the best. Thanks again Dave.
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 02:05 PM.


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