Open Side Menu Go to the Top
Register
NEW AHK: Stars Buddy List (for new client) NEW AHK: Stars Buddy List (for new client)

06-08-2009 , 10:31 AM
Quote:
Originally Posted by rarerabbit
Works fine, I just can't get the "add player" to work.
You do have to have AHK installed on your computer.


thank you,rarerabbit!
i know how to add player now, build a file named buddies.txt,and u can add player by type the player's name on this file ,u can search after save this file.

but it seams u can't search the guy if he has choose hide from search feature,if this is true,i think Stars Buddy List is no use ,who would not choose this option above 100nl?
NEW AHK: Stars Buddy List (for new client) Quote
06-19-2009 , 03:43 AM
I can't get this to work, I have put all this in the same folder...



and then when I right click the script and click find buddies, nothing happen, can someone help me please?
NEW AHK: Stars Buddy List (for new client) Quote
07-13-2009 , 08:48 PM
IsCompiled() non-existant function? i have functions_v3.ahk as well. tried both "latest" and "pack" zip files. halp.
NEW AHK: Stars Buddy List (for new client) Quote
07-14-2009 , 01:40 AM
should be in your functions, but i think this is the function you want...
Code:
;don't allow compiled scripts
IsCompiled() 
{ ; by Roland
If A_IsCompiled {
 msg =
 (LTrim Join`s
 Sorry, but it is not possible to run this script correctly if it
 is compiled. The program will exit.
 )
 Msgbox(msg, "IconX w250 bold -Owner",version)
 ExitApp
 }
}
NEW AHK: Stars Buddy List (for new client) Quote
07-14-2009 , 12:31 PM
dammit i'll have to look at this again. weird. you found that in functions_v3.ahk?
NEW AHK: Stars Buddy List (for new client) Quote
08-31-2009 , 12:26 PM
Hi guys!
Please, help me out with Starsbuddy
When I try to open it- i get this

What should I correct to get SB working?
NEW AHK: Stars Buddy List (for new client) Quote
09-02-2009 , 10:13 AM
hey guys, what happened with the stars that makes the skript not working?
Is it a change in Requests table? the new playing audit option?
When I run the skript and it starts to run find a player, it shows me ˙ţ1 . I dont understand that.
I use StarsBuddylist-v0.1.ahk
NEW AHK: Stars Buddy List (for new client) Quote
09-15-2009 , 02:22 PM
I asked this earlier and got no response; but since I think it would be helpful I will ask again.

Is there any tweak that can be done to the script to allow it to make use of more than one "buddies.txt" file? i.e., if I want one "buddy list" for tournaments, and another for cash games.
Anyone know how to do this?

Thanks
NEW AHK: Stars Buddy List (for new client) Quote
09-26-2009 , 04:12 PM
Hey guys, come on, Help pls, there are people using it every day.
NEW AHK: Stars Buddy List (for new client) Quote
07-25-2010 , 01:11 PM
just downloaded everything required and followed all instructions and it works like a dream. However, cant get Ctrl+right to add players working, but who cares this is winner. Many thanks OP
NEW AHK: Stars Buddy List (for new client) Quote
08-05-2010 , 12:21 PM
aaaaaaand i update stars and buddy list stops working (

any ideas?
NEW AHK: Stars Buddy List (for new client) Quote
03-23-2011 , 04:37 AM
BUMP!
NEW AHK: Stars Buddy List (for new client) Quote
04-01-2011 , 02:44 PM
Guys I need this script buddy list for PokerStars and FullTiltPoker, everyone who tried so far are not working because they are old and others are linked off, can someone help me?
NEW AHK: Stars Buddy List (for new client) Quote
04-30-2011 , 04:41 PM
bump do this work?
NEW AHK: Stars Buddy List (for new client) Quote
05-16-2011 , 08:50 PM
is this still working?
NEW AHK: Stars Buddy List (for new client) Quote
06-16-2011 , 03:43 AM
Anyone ???
NEW AHK: Stars Buddy List (for new client) Quote
08-23-2011 , 12:02 PM
Bump.

Particularly interested in the "hotkey + right-click to search player" feature. Would give some cash for a working solution. =)
NEW AHK: Stars Buddy List (for new client) Quote
09-08-2011 , 04:50 PM
Figured out it's quite simple.

Code:
#NoEnv
#SingleInstance, Force
SendMode Input

^RButton::
MouseGetPos, , , id
WinGetClass, WndClass, ahk_id %id%

if (WndClass = "PokerStarsTableFrameClass")
{
	Click Right
	WinWait, ahk_class #32768
	Send, f
}
return
Ctrl + right-click players all day long to search them. Problem solved. =)
NEW AHK: Stars Buddy List (for new client) Quote
04-05-2013 , 06:46 AM
Hi!
I tried to download buddy list, but give me an error...
Just me or some problems to downolad?
Can any one send it to me?

really thanks.
NEW AHK: Stars Buddy List (for new client) Quote
04-05-2013 , 07:02 AM
Somewhat stripped down:
Code:
; by _dave_ - CTRL + RightClick on a player, or right click the tray icon to search

#NoEnv
#SingleInstance, Force
SendMode Input
GroupAdd, StarsTables, ahk_class #32770,,, PokerStars Lobby
Menu, menu1, Add, test
Menu, Tray, Add, Find Buddies, allbuddies
gosub allbuddies
~!^Esc::Suspend
return
F1::gosub allbuddies
return



searchplayer:
if (A_ThisMenuItemPos = 2)
{
  FileAppend, %playername%`n, buddies.txt 
}
else
{
  WinGet, ps_id, id, PokerStars Lobby
  Winget, ps_pid, pid, ahk_id%ps_id%
  WinMenuSelectItem, ahk_id%ps_id%,, Requests,Find a Player...
  WinWait,Find a Player ahk_pid%ps_pid%,,2
  WinGet, playerwin, id,Find a Player ahk_class #32770 ahk_pid%ps_pid%
  if (!playerwin)
  {
    return
  }
  ControlSetText,Edit1, %playername%, ahk_id%playerwin%
  ControlSend, Find, {SPACE}, ahk_id%playerwin%
  Sleep, 200
  WinWait,Find a Player ahk_pid%ps_pid%,,2
  
  WinGet, playerwin, id,Find a Player ahk_class #32770 ahk_pid%ps_pid%
  if (playerwin)
  {
    WinGet, clist, ControlList, ahk_id%id%
    if (InStr(clist, "Remove From List"))
    {
      ControlSend, Cancel, {SPACE}, ahk_id%playerwin%
  
    }
    else
    {
      sleep, 200
    }
  }
}
return

allbuddies:
WinGet, ps_id, id, PokerStars Lobby
Winget, ps_pid, pid, ahk_id%ps_id%
FileRead, buddies, buddies.txt
Loop, Parse, buddies, `n
{
  playername := A_LoopField
  gosub searchplayer
}    
ifwinexist Find a Player
{
	wingetpos ,x,y,w,h
	if (h<200)
		controlclick , button3
}
return
NEW AHK: Stars Buddy List (for new client) Quote
04-07-2013 , 09:10 AM
Someone please cand send me a PM with this script, pleeeeease!!!
^_^
NEW AHK: Stars Buddy List (for new client) Quote
04-08-2013 , 09:39 AM
Quote:
Originally Posted by NConTac
Someone please cand send me a PM with this script, pleeeeease!!!
^_^
rubbishaka80, _dave_,someone... Pleeeease ^_^

really thanks!
NEW AHK: Stars Buddy List (for new client) Quote
04-08-2013 , 09:46 AM
Read the FAQ, specifically the section about AHK. Then you'll know what to do with the code I posted.
NEW AHK: Stars Buddy List (for new client) Quote
04-09-2013 , 10:50 AM
It would be great to have this AHK working.

rubbishaka80, there's an error at this line: "Menu, menu1, Add, test".

I already removed it, but the AHK still doesnt work. The "Find Buddies" func doesnt seems to find anyone (and i have some buddies on the .txt file).
NEW AHK: Stars Buddy List (for new client) Quote
04-09-2013 , 12:22 PM
Quote:
Originally Posted by Zelkin
rubbishaka80, there's an error at this line: "Menu, menu1, Add, test".
You are correct.

Quote:
I already removed it, but the AHK still doesnt work. The "Find Buddies" func doesnt seems to find anyone (and i have some buddies on the .txt file).
Hmm, works for me, but only with the classic lobby theme.
NEW AHK: Stars Buddy List (for new client) Quote

      
m