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
  #401  
Old 01-04-2007, 09:41 PM
NoTurns NoTurns is offline
Junior Member
 
Join Date: Oct 2006
Posts: 21
Default Re: iWitness v2

I get the following error message:

-----
Error at line 1685

Line Text: this_client login_on_first_client
Error: This line does not contain a recognized action.

The program will exit.
-----

Any1? Please help! [img]/images/graemlins/frown.gif[/img]

Thnx!
Reply With Quote
  #402  
Old 01-05-2007, 07:54 AM
NoTurns NoTurns is offline
Junior Member
 
Join Date: Oct 2006
Posts: 21
Default Re: iWitness v2

No1? [img]/images/graemlins/frown.gif[/img]
Reply With Quote
  #403  
Old 01-05-2007, 11:25 AM
NoTurns NoTurns is offline
Junior Member
 
Join Date: Oct 2006
Posts: 21
Default Re: iWitness v2

OK, maybe someone has a working version on their PC then. Is there ANY way that person could send me (by email ie) their iwitness.ahk so I can be sure it's not just something going wrong while I'm copying/pasting the script.
Reply With Quote
  #404  
Old 01-05-2007, 01:03 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: iWitness v2

No idea how this went unnoticed for so long, but there was simply a comma missing in that line; I fixed it.
I'd be surprised if iWitness still works though.
Reply With Quote
  #405  
Old 01-05-2007, 11:57 PM
sputnik365 sputnik365 is offline
Senior Member
 
Join Date: May 2005
Posts: 162
Default Re: iWitness v2

Fantastic!!
It still works. [img]/images/graemlins/grin.gif[/img]

Thank you Roland
All the best
Reply With Quote
  #406  
Old 01-24-2007, 01:55 AM
Klyka Klyka is offline
Junior Member
 
Join Date: Jun 2005
Location: Sweden
Posts: 20
Default Re: iWitness v2

I'm having the same problem, but dealer is not set to silent. The "This tournament has finished, congratulations to the winners." message is visible in my tournament windows, but the script still doesn't close the tables.

Whats wrong?
Reply With Quote
  #407  
Old 01-27-2007, 03:59 PM
rocco1999 rocco1999 is offline
Senior Member
 
Join Date: Dec 2006
Posts: 121
Default Re: iWitness v2

This program just dont work for me, i have freephg 2.07b and iwitness and when i set it up and click go, partypoker opens and login and all, but just go through tables and doesnt open one, well sometimes it do, sometimes it dont, almost never opens up like set in iwitness. Anyone having same problems and know solution?

thanks
Reply With Quote
  #408  
Old 01-29-2007, 03:01 PM
cassette cassette is offline
Senior Member
 
Join Date: Feb 2005
Posts: 1,289
Default Re: iWitness v2

[ QUOTE ]
I am wondering if there is a way to make sure that watches a table for a sufficent amount of hands. im finding that it will switch tables up after only 15-30 hands and i won't be able to get sufficent # of hands on a player.

[/ QUOTE ]

I have the same problem. When IWitness looks to refresh tables after 5 minutes it always closes them all down and opens 10 new tables. I think it might have something to do with the fact that in the client window under the "Players" column it lists the number of players as -4.

Any ideas?

Thanks for the great script!!
Reply With Quote
  #409  
Old 01-30-2007, 06:44 PM
Johan L Johan L is offline
Senior Member
 
Join Date: Nov 2005
Location: NL100$ FR 15/5/2.5
Posts: 489
Default Re: iWitness v2

I have tried to fix this but I'm not very good with computers. My guess is that it errs in this section where it looks for open seats. I wrote %seats% to the logfile and it was 0 everytime. Hence -4 for 6 max. This causes the table not to meet the criterian an the table is closed. Does anyone know what the following code means and how we can fix it? Would it be possible to get the number of players from the lobby for a given table?

IfWinExist, %table_name%

{
WinGetTitle, check_for_SNG
IfNotInString, check_for_SNG, Buy-in.
{
i = 3
seats = 0
;Go through all the "Seat Open" buttons
Loop, 10
{
i++
;If they're visible, this is an empty seat.
ControlGet, is_visible, Visible, , AfxWnd42%i%, %table_name%
If is_visible = 0
seats++
}
}
Else
{
ControlGetText, is_finished, RICHEDIT1
IfInString, is_finished, This tournament has finished
seats = finished
Else
{
ControlGetText, level, static5
StringMid, seats, level, InStr(level, "Level:") + 6, 1
If seats =
seats = Registering
Else
seats = L%seats%
}

}

}
string = Johan checked table seats: %seats%
Log(string)
Reply With Quote
  #410  
Old 01-30-2007, 07:26 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: iWitness v2

[ QUOTE ]
I have tried to fix this but I'm not very good with computers. My guess is that it errs in this section where it looks for open seats. I wrote %seats% to the logfile and it was 0 everytime. Hence -4 for 6 max. This causes the table not to meet the criterian an the table is closed. Does anyone know what the following code means and how we can fix it? Would it be possible to get the number of players from the lobby for a given table?

IfWinExist, %table_name%

{
WinGetTitle, check_for_SNG
IfNotInString, check_for_SNG, Buy-in.
{
i = 3
seats = 0
;Go through all the "Seat Open" buttons
Loop, 10
{
i++
;If they're visible, this is an empty seat.
ControlGet, is_visible, Visible, , AfxWnd42%i%, %table_name%
If is_visible = 0
seats++
}
}
Else
{
ControlGetText, is_finished, RICHEDIT1
IfInString, is_finished, This tournament has finished
seats = finished
Else
{
ControlGetText, level, static5
StringMid, seats, level, InStr(level, "Level:") + 6, 1
If seats =
seats = Registering
Else
seats = L%seats%
}

}

}
string = Johan checked table seats: %seats%
Log(string)

[/ QUOTE ]
Have you tried changing all references of " AfxWnd42" in the code to "AfxWnd42u". A while back Party renamed stuff and most scripts broke because of this.

Juk [img]/images/graemlins/smile.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 05:06 PM.


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