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
  #101  
Old 08-27-2006, 12:42 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: DeMonster (New AHK Script)

[ QUOTE ]
Can I please have the previous version

[/ QUOTE ]

The great thing about the wiki is that you get version history (click on 'Info').
Reply With Quote
  #102  
Old 08-27-2006, 12:45 PM
APerfect10 APerfect10 is offline
Senior Member
 
Join Date: Jan 2005
Location: PokerTracker 3
Posts: 979
Default Re: DeMonster (New AHK Script)

[ QUOTE ]
Big problems with the newest version I'm afraid. Can I please have the previous version as this one seems to lose all of the list box contents. When you click 'all' they come back but the tournament filters doesn't work at all, you can't access it as the listbox covers it at the top.

[/ QUOTE ]

Oops. I left something in I shouldnt have....some personal things. Try again...
Reply With Quote
  #103  
Old 08-27-2006, 12:45 PM
SugarHoofs SugarHoofs is offline
Junior Member
 
Join Date: Mar 2006
Posts: 19
Default Re: DeMonster (New AHK Script) v1.20 ....

Thank you for the continued attention to updates and improvements.

Unfortunately, with this v1.20, with the following combo of Edit Settings, The table listing Column Headers, i.e. Name, Stakes, Player/Stats, etc. disapper. The yellow/gold 'Table Filters' occasionally will be displayed but I cannot figure out why.

Edit Settings:

Set if Monster Popup window should be closed when joining a Monster table (1) or not (0).

dm_auto_close_popup = 1

; Set if the Monster Jackpot Should be Pinned (1) or not (0).
; (Note: Recommended to be Pinned (1) to increase PartyGaming performance

dm_pin_jackpot = 1

; Set if the Monster Jackpot Should be Hidden (1) or not (0).

dm_hide_jackpot = 1

; Set if the Lobby Monster Jackpot should be Hidden (1) or not (0).

dm_hide_lobby_jackpot = 1

; Set if the Lobby News & Events should be Minimized (1) or not (0).

dm_minimize_lobby_news = 1


; ***************************
; * *
; * No Spam Settings *
; * *
; ***************************


; Set if you want to auto join the waiting list (1) or not (0).

dm_auto_join_waiting_list = 1

; Set if you want to auto join the first available table (1) or not (0).

dm_auto_join_first_available = 0

; Set if you want to auto buy-in (only full amount) (1) or not (0).

dm_auto_buyin = 0
dm_buyin_amount = 100 ; (in BB) ie) Full NL stack = 100, Limit Default Stack = 25

; Set if you want to auto leave the table (1) or not (0).

dm_auto_leave_table = 0

; Set if you want to auto post the big blind (1) or not (0).

dm_auto_post_bb = 0

; Set if you want to wait for the big blind to post (1) or not (0).

dm_Wait_for_bb = 1

; Set if you want to auto login to PartyPoker (1) or not (0).

dm_auto_login = 1

; Set if you want to disable spam/popups (1) or not (0).

dm_no_spam = 1

; Set if you want to auto choose your last hand when opening the hand history (1) or not (0).

dm_auto_handhistory = 1

Thanks. JHH
Reply With Quote
  #104  
Old 08-27-2006, 12:46 PM
APerfect10 APerfect10 is offline
Senior Member
 
Join Date: Jan 2005
Location: PokerTracker 3
Posts: 979
Default Re: DeMonster (New AHK Script) v1.20 ....

SugarHoofs,

I just replied right before you posted. I left some personal things in this latest version. I've fixed it. Sorry [img]/images/graemlins/frown.gif[/img]
Reply With Quote
  #105  
Old 08-27-2006, 12:48 PM
tigerite tigerite is offline
Senior Member
 
Join Date: Sep 2004
Posts: 9,815
Default Re: DeMonster (New AHK Script)

Much better, ta [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #106  
Old 08-27-2006, 12:48 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: DeMonster (New AHK Script)

[ QUOTE ]
Does Send and WinClose work on the last active window (in the OS) or the last window referenced in your script? (if the last active window then this explains alot of the weirdness I've had happen in the past).

[/ QUOTE ]

Send just sends the keystrokes; it doesn't check which window it's sending to. Therefore everything gets sent to the active window.
WinClose operates on the Last Found Window (assuming no parameters). The last found window isn't neccessarily the last window referenced in your script , though. It is only set by IfWinExist (IfWinNotExist, WinExist(), etc.) and WinWait.
Reply With Quote
  #107  
Old 08-27-2006, 12:52 PM
APerfect10 APerfect10 is offline
Senior Member
 
Join Date: Jan 2005
Location: PokerTracker 3
Posts: 979
Default Re: DeMonster (New AHK Script)

Furthermore, if I'm using a SEND I try to always activate the window prior to SEND. With WinClose, I always identify the window to close through the window ID. This seeems to be foolproof.
Reply With Quote
  #108  
Old 08-27-2006, 12:52 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: DeMonster (New AHK Script)

[ QUOTE ]
In this latest version I changed the last remaining send {enter} in the buy-in section to click the button using a window ID so I think this should fix this specific problem he had.

[/ QUOTE ]

Are you using your special ControlClick version to click the OK button? For some reason I've always had trouble clicking that button reliably (I had forgotten all about it though).
Reply With Quote
  #109  
Old 08-27-2006, 12:57 PM
APerfect10 APerfect10 is offline
Senior Member
 
Join Date: Jan 2005
Location: PokerTracker 3
Posts: 979
Default Re: DeMonster (New AHK Script)

[ QUOTE ]
Are you using your special ControlClick version to click the OK button? For some reason I've always had trouble clicking that button reliably (I had forgotten all about it though).

[/ QUOTE ]

Yep, to click any control in DeMonster I use my new ControlClick method:

<font class="small">Code:</font><hr /><pre>Lib_DM_ClickControl(winID, buttonName)
{
Control, Enable, , %buttonName%, ahk_id%winID%
Control, Check, , %buttonName%, ahk_id%winID%

return (ErrorLevel)
}</pre><hr />

It works perfectly [img]/images/graemlins/smile.gif[/img] I never use AHK's ControlClick anymore. It just is not reliable; unlike the new workaround. (I dont take credit for this, I found it on the AHK forums)
Reply With Quote
  #110  
Old 08-27-2006, 01:00 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: DeMonster (New AHK Script)

Cool, I'll have to try it on Paradise (Paradise stopped responding to ControlClick, pretty much [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 08:16 PM.


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