Open Side Menu Go to the Top

10-27-2009 , 11:33 AM
I'm looking for some kind of script that does:
  1. Auto-Timebank
  2. Assigns keyboard shortcuts for Fold and All in
  3. Hand Counter

If anyone can provide me with something really straightforward that does all or just these things I would be eternally grateful.
Super Simple FTP Scripts? Quote
Super Simple FTP Scripts?
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Super Simple FTP Scripts?
10-27-2009 , 08:11 PM
I dont think AHK scripts work anymore with FTs software. FT table ninja will look after numbers 1+2 for you (auto-timebank won't work with overlapped tables though AFAIK), it's still in beta development so it's free to use. As for counting hands, won't your PT3 or HEM do that for you?
Super Simple FTP Scripts? Quote
10-27-2009 , 08:21 PM
Thanks for the reply.

I'm sometimes stacking/overlapping/tiling. I don't really want all the extras. Just something that does 1, then if possible also 2 and 3.

I don't really want to be checking HEM to see hands played, a little script would be a lot easier. Is there nothing? Is it hard to make what I am asking for?
Super Simple FTP Scripts? Quote
10-27-2009 , 10:00 PM
I wrote this a few weeks ago - does all-in, pot, fold, call, bet and the same hotkeys tick the advance boxes for the fold and call advance actions.

Just edit the key names and save as Whatever.ahk. You may need to tweak the coordinates on the very smallest tables - I 9 table on a 24 inch 1900 1200 and it's fine for that and larger.

Code:
SetTitleMatchMode 2

BackSpace::
  ;allin
  Press(1)
Return

NumpadSub::
  ;pot
  Press(2)
Return

NumpadAdd::
  ;first advance box and first button
  Press(3)  
Return

NumpadMult::
  ;second advance box and second button 
  Press(4)   
Return

NumpadDiv::
  ;third button
  Press(5)  
Return
;-------------------------------------------------------------------------------
Press(Key)
  {
  IfWinExist, Logged In As ahk_class QWidget,, Full Tilt Poker
    {
    WinGet,id,ID
    SetFormat, Float,0.2
    MouseGetPos,,,id
    WinGetPos,x,y,w,h,ahk_id %id%
    w1 := (w/808)
    h1 := (h/585)
    SetFormat, Float,0   
    If (key = 1)
      {
      w2 := (772 * w1)
      h2 := (448 * h1)
      }
    Else If (key = 2)
      {
      w2 := (742 * w1)
      h2 := (448 * h1)
      }
    Else If (key = 3)
      {
      w2 := (547 * w1)
      h2 := (538 * h1)
      }  
    Else If (key = 4)
      {
      w2 := (625 * w1)
      h2 := (538 * h1)
      }    
    Else If (key = 5)
      {
      w2 := (749 * w1)
      h2 := (538 * h1)
      }      
    WinActivate, ahk_id%id%
    ControlClick, x%w2% y%h2%, ahk_id %id%
    }
  }
Super Simple FTP Scripts? Quote
Super Simple FTP Scripts?
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Super Simple FTP Scripts?

      
m