View Single Post
  #50  
Old 01-26-2007, 01:17 PM
Gnumsploitz Gnumsploitz is offline
Senior Member
 
Join Date: Sep 2004
Location: San Jose, CA
Posts: 120
Default Re: Stars Move to Urgent Table & Auto Time Bank Clicker - New AHK Scr

[ QUOTE ]
Any chance dave or Juk could edit the script so the auto time bank feature works with the 9 seated turbo sng's @Stars ?

[/ QUOTE ]

This works great for me. I'm testing it as I post this.

Change:

[ QUOTE ]
{
StringTrimLeft, waiting_table, A_LoopField, InStr(A_LoopField, "_")
timebank_x := 570
timebank_y := 440
relStarsClientPoint(waiting_table, timebank_x, timebank_y)
PostLeftClick(timebank_x, timebank_y, waiting_table, 0)
}

[/ QUOTE ]
to...

[ QUOTE ]
{
StringTrimLeft, waiting_table, A_LoopField, InStr(A_LoopField, "_")
timebank_x := 530
timebank_y := 440
relStarsClientPoint(waiting_table, timebank_x, timebank_y)
PostLeftClick(timebank_x, timebank_y, waiting_table, 0)
}

[/ QUOTE ]

Save and run the script. Should work fine. The timebank is a little further to the left for the 9-man turbos.

For anyone that is looking to use this script purely as a timebank clicker, just follow dave's above instructions on how to comment out the MouseMove line. I also removed the border from my tables (I cascade) by defining:

[ QUOTE ]
border_size := 0

[/ QUOTE ]

...in settings near the beginning of the script.

Thanks for your hard work on this one, dave. I'll be using it in all the sessions I play.
Reply With Quote