Open Side Menu Go to the Top
Register
Stars Buddy List AHK Script Stars Buddy List AHK Script

10-04-2008 , 09:16 AM
Happens often to me. I was given some code to change it's right-click menu, so it would have a 'reload script' option. Any time it hangs up, I just reload it from the tray, and search again.

Quote:
Originally Posted by fozzy71
dave - what do i have to do to get a 'reload this script' option in the system tray for Stars Buddy List?? It hangs up a lot, and I have to right click exit, and dbl-click my shortcut on the quick launch. When it hangs up once, it usually hangs up a few times in a row, making it a real pain, imo.
Quote:
Originally Posted by rubbishaka80
Find this line in Starsbuddylist.ahk
Code:
Menu, Tray, NoStandard
and insert a ';' in the beginning to comment it out.
Stars Buddy List AHK Script Quote
10-04-2008 , 09:19 AM
Thanks Fozzy.... I'd already done that. But that doesn't solve the problem... I've got over 200 fishies, er buddies, that I like to play with... When I do the search it's now to the point whee it freezes after only running for like 10 seconds.
Stars Buddy List AHK Script Quote
10-04-2008 , 09:58 AM
Me thinks the problem is in the Functions script, specificially:

Code:
Loop {
   Sleep 10 
  If ( a_index>5000 )
    {
        return  ; ========> Error Here?  
    }
  
    if WinExist("Find Player") {
	
      ControlGet, info, list,, ListBox1, % "Find Player"
      If ( close )
        WinClose
      return info
    }else If WinExist("PokerStars","OK") {
		
      WinClose
	  ;controlclick, Button1
      return 0
	  }
  }
}
Stars Buddy List AHK Script Quote
10-04-2008 , 11:05 AM
I have the same freezing problem too, but the solution I've found is to reload chips on a table (click dealer tray, click add more chips, and then stars planner kicks in). This seems to kick start the buddy list where it left off.
Stars Buddy List AHK Script Quote
10-04-2008 , 11:45 AM
Quote:
Originally Posted by sarahbellum
I have the same freezing problem too, but the solution I've found is to reload chips on a table (click dealer tray, click add more chips, and then stars planner kicks in). This seems to kick start the buddy list where it left off.
Get Stars Auto Reloader, and set a mouse hotkey for manual reload/top-up. It will save you at least 1 click each time.
Stars Buddy List AHK Script Quote
10-05-2008 , 04:15 PM
Quote:
Originally Posted by fozzy71
Get Stars Auto Reloader, and set a mouse hotkey for manual reload/top-up. It will save you at least 1 click each time.
Thanks for the work around guys... still a pain, but I'll try to debug when I'm actually making money at NL lol
Stars Buddy List AHK Script Quote
10-09-2008 , 07:36 AM
think im doing something wrong, probably something stupid but please help me out. i get this error log:

20081009133505 - An Error Occured:

Input:
\f '\t'
SELECT DISTINCT table_name, game_level_desc FROM game g, game_level gl WHERE g.game_level_id = gl.game_level_id AND g.site_id = 2 ORDER BY table_name ASC;
\q


Output:
'psql.exe' is not recognized as an internal or external command,
operable program or batch file.
Stars Buddy List AHK Script Quote
10-22-2008 , 12:14 PM
i had my stars buddy list on a different, larger monitor than the one im currently using..

now when i try to open it the buddy list opens to where i last had it on a larger monitor and it does not appear on my current monitor..

any ideas how i can restore, maximize, etc so i can get my list to appear
Stars Buddy List AHK Script Quote
10-22-2008 , 02:12 PM
Edit StarsBuddyList.ini

Code:
[Gui Position]
x=2998
y=573
w=336
h=336
Stars Buddy List AHK Script Quote
10-26-2008 , 08:55 AM
Fozzy I saw now your reply to my thread

Hope someone can help to doing this, should be usefull

http://forumserver.twoplustwo.com/45...vement-318873/
Stars Buddy List AHK Script Quote
10-26-2008 , 09:25 AM
Quote:
Originally Posted by fiammaz
Fozzy I saw now your reply to my thread

Hope someone can help to doing this, should be usefull

http://forumserver.twoplustwo.com/45...vement-318873/
If it gets done, you can be sure it will be _dave_ that gets it done. I despise the default stars notes system.
Stars Buddy List AHK Script Quote
10-28-2008 , 05:49 PM
I can't add players to my buddy list by alt+clicking when PT3 HUD is running.
If I don't run PT3 HUD, it works perfect.

Any ideas?
Stars Buddy List AHK Script Quote
11-10-2008 , 03:57 PM
It seems that today's stars update changed the search for a player window and broke this script.
Stars Buddy List AHK Script Quote
11-10-2008 , 04:13 PM
same here
Stars Buddy List AHK Script Quote
11-11-2008 , 12:28 PM
Hi,

Buddy don't work since the last update
Stars Buddy List AHK Script Quote
11-11-2008 , 07:02 PM
Please fix it :-D
Stars Buddy List AHK Script Quote
11-11-2008 , 11:43 PM
Pretty please, with sugar on top?
Stars Buddy List AHK Script Quote
11-12-2008 , 12:53 PM
bump
Stars Buddy List AHK Script Quote
11-12-2008 , 08:28 PM
This works for me. Just keep Stars Find a Player window open afterwards, it has more information than the buddy list ever had.
Code:
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%  
F1::
Loop, Read, buddies.txt
{
	SetTitleMatchMode, 1
	ifwinexist Find a Player
	{
		winactivate
		wingetpos ,x,y,w,h
		if (h>200)
			controlclick , button1
	}
	else
	{
		IfWinExist PokerStars Lobby
		{
			WinActivate
			winmenuselectitem , , ,Requests, Find a Player...
		}
		else 
			return
	}
	Send, %A_LoopReadLine% {Enter}
	Sleep, 1000
}
ifwinexist Find a Player
{
	wingetpos ,x,y,w,h
	if (h<200)
		controlclick , button3
}
return
Stars Buddy List AHK Script Quote
11-12-2008 , 08:53 PM
Not working
Stars Buddy List AHK Script Quote
11-13-2008 , 08:49 PM
Anyone care to fix this?
Stars Buddy List AHK Script Quote
11-16-2008 , 01:34 AM
Quote:
Originally Posted by rubbishaka80
This works for me. Just keep Stars Find a Player window open afterwards, it has more information than the buddy list ever had.
Code:
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%  
F1::
Loop, Read, buddies.txt
{
	SetTitleMatchMode, 1
	ifwinexist Find a Player
	{
		winactivate
		wingetpos ,x,y,w,h
		if (h>200)
			controlclick , button1
	}
	else
	{
		IfWinExist PokerStars Lobby
		{
			WinActivate
			winmenuselectitem , , ,Requests, Find a Player...
		}
		else 
			return
	}
	Send, %A_LoopReadLine% {Enter}
	Sleep, 1000
}
ifwinexist Find a Player
{
	wingetpos ,x,y,w,h
	if (h<200)
		controlclick , button3
}
return
exactly where do i put this in the buddy list script to get this to work
Stars Buddy List AHK Script Quote
11-19-2008 , 05:29 PM
Bump

Anyone? Should I just give up? I'd fix it myself and post it if I had a clue how this stuff works.
Stars Buddy List AHK Script Quote
11-19-2008 , 09:33 PM
Quote:
Originally Posted by UNO_Bomber
Bump

Anyone? Should I just give up? I'd fix it myself and post it if I had a clue how this stuff works.
+1 Sure hope the BuddyList can be fixed, it still offers a better solution than the Stars update.
Stars Buddy List AHK Script Quote
12-11-2008 , 04:08 AM
Bump
Stars Buddy List AHK Script Quote

      
m