Open Side Menu Go to the Top
Register
Quick Questions & Answers Thread Quick Questions & Answers Thread

08-06-2009 , 05:54 AM
Quote:
Originally Posted by a nonymous
should I get the picture reference?
Probably not unless you live in England or Scotland

It's the Forth Railway Bridge and the old joke is that it takes so long to paint that as soon as you finish you have to start again.

Juk
Quick Questions & Answers Thread Quote
08-06-2009 , 08:47 AM
I played a hu match with a mate last night and I want to combine both hh files into a replayer so I can cycle through the hands and see what we both had at the same time. How do I do this?

Cheers
Quick Questions & Answers Thread Quote
08-06-2009 , 12:30 PM
Quote:
Originally Posted by HighSteaks
I think there is a fair few good Spreadsheets here - this search turned up a fair few

Spreadsheets

This one looked like it might do the job.

Hey thanks, that second one is really good, thanks again
Quick Questions & Answers Thread Quote
08-06-2009 , 12:35 PM
Does Sharkscope work well with FT SNGs and is it allowed on their site?

Thanks
Quick Questions & Answers Thread Quote
08-06-2009 , 01:49 PM
Thanks
Quick Questions & Answers Thread Quote
08-06-2009 , 02:14 PM
Is there some software that will join all the waitlists in my lobby? This would be helpful when Im just starting a session. I just want to get 24 tables up ASAP and then I can start table selecting.
Quick Questions & Answers Thread Quote
08-06-2009 , 02:49 PM
Quote:
Originally Posted by sethseth
Is there some software that will join all the waitlists in my lobby? This would be helpful when Im just starting a session. I just want to get 24 tables up ASAP and then I can start table selecting.
Pokerstars?


Code:
/*
Waitinglist Joiner

By: Hood (2+2) / Hood34 (Stars)

*/

;Script configuration
#NoEnv
#Persistent
#SingleInstance force
#Include %a_scriptDir%
SendMode Input
SetWorkingDir %a_scriptDir%

TABLE_LIST := "PokerStarsListClass1"
BUTTON_WAITING := "PokerStarsButtonClass4"

!^r::
joinWaiting(20)
return

joinWaiting(num=1) {
    global BUTTON_WAITING, TABLE_LIST
    SetControlDelay -1
    lobbyid := getLobbyID()
    count := 0
    Loop {
        if (count >= num) {
            break
        }
        if (controlVisible(lobbyid, BUTTON_WAITING)) {
            ControlClick %BUTTON_WAITING%, ahk_id %lobbyid%
            count += 1
        }
        ControlSend, %TABLE_LIST%, {Down}, ahk_id %lobbyid%
        Sleep, 2500
    }
}


controlVisible(winid, button) {
    ControlGet, vis, Visible, , %button%, ahk_id %winid%
    return vis
}

getLobbyID(pid=false) {
    WinGet, lobbyID, id, PokerStars Lobby
    if (!pid) {
        return lobbyID
    } else {
        WinGet, lobbyPID, PID, ahk_id%LobbyID%
        return lobbyPID
    }
}
~^!q::
ExitApp
return
Quick Questions & Answers Thread Quote
08-06-2009 , 05:58 PM
I have an AHK request. I do not know if it is feasible, but if someone could do it for me, I would pay them at least $50. Here is what I want:

I play on many different sites. I always strive to game-select well by leaving games that do not have fish as well as checking the lobbies of the different sites I play on for better games. Sometimes, I forget to check the lobbies of certain sites or I do not leave tables when I should. I am looking for an AHK script that can help remind me by doing the following:

Once launched, the AHK script would have a small GUI that has one action and a checkbox. For example, an action would say something like "Start 2 new tables of 10/20 HUNL on Full Tilt." Once checked, that action would disappear and a new one would come up with a checkbox. For example, "Start 2 new tables of 10/20 HU NL on Chili Poker." Once I checked this box, a new action would come up which I could then check when completed, and this process would keep repeating itself.

I would find this to be very helpful, since I often forget to start HU tables on certain sites or to check the lobbies for good 6-max games. One other thing I would like the script to do would be to have a repeat function for part of the actions. For example, there are basically 2 components to playing: Preparation, and While Playing.

Preparation components would be stuff like:
1. Launch The Opener.
2. Log in to Party Poker.
3. Log in to Full Tilt.
etc.

While Playing components would be stuff like:
1. Check all tables that are you playing on for fish. If a table is only regulars, leave that table.
2. Search the PokerStars lobby for 10/20 PLO games.
etc.

Now the preparation actions only have to be done once, but the while playing actions are done continuously and for this reason, I would like them to loop. For example, let's say I have 10 while playing actions. When I complete #10, the AHK script would go back to #1.
Quick Questions & Answers Thread Quote
08-06-2009 , 08:47 PM
does anyone know why my HEM is not importing Pokerstars handhistories anymore. it happened today
Quick Questions & Answers Thread Quote
08-06-2009 , 08:49 PM
Because you need to update to 1.09 Beta 23a - http://rvgsoftware.fileburst.com/HmBetaUpdate.exe
Quick Questions & Answers Thread Quote
08-06-2009 , 09:52 PM
On FTP my notes wont update. I already went in and unchecked read only since it was turned to read only when I moved my note file onto another computer. Everytime I go and change it back it reverts back to read only. Help
Quick Questions & Answers Thread Quote
08-06-2009 , 10:45 PM
hey fozzy, it still is not importing my pokerstars hand histories =/
Quick Questions & Answers Thread Quote
08-06-2009 , 10:55 PM
Quote:
Originally Posted by gguzman23
hey fozzy, it still is not importing my pokerstars hand histories =/

If you have Vista, please verify that UAC is still off. If it is on, please turn it off and reboot.

Close stars, and if there are any HHs sitting in your HH folder, please manually cut them and paste them into your archives.

Try creating a new DB and importing some of the hands.

If that doesn't help, please answer these questions, and post the answers in a new thread on the HM Forums - http://www.holdemmanager.net/forum/index.php
Quick Questions & Answers Thread Quote
08-06-2009 , 11:43 PM
Is there a PS script that can change the slider to .5bb every click? Thanks
Quick Questions & Answers Thread Quote
08-06-2009 , 11:45 PM
Is there any script for Ulitmate Bet to set your open raise size to 2.5x?
Quick Questions & Answers Thread Quote
08-07-2009 , 07:00 AM
Quote:
Originally Posted by Antidote
I have an AHK request. I do not know if it is feasible, but if someone could do it for me, I would pay them at least $50. Here is what I want:

I play on many different sites. I always strive to game-select well by leaving games that do not have fish as well as checking the lobbies of the different sites I play on for better games. Sometimes, I forget to check the lobbies of certain sites or I do not leave tables when I should. I am looking for an AHK script that can help remind me by doing the following:

Once launched, the AHK script would have a small GUI that has one action and a checkbox. For example, an action would say something like "Start 2 new tables of 10/20 HUNL on Full Tilt." Once checked, that action would disappear and a new one would come up with a checkbox. For example, "Start 2 new tables of 10/20 HU NL on Chili Poker." Once I checked this box, a new action would come up which I could then check when completed, and this process would keep repeating itself.

I would find this to be very helpful, since I often forget to start HU tables on certain sites or to check the lobbies for good 6-max games. One other thing I would like the script to do would be to have a repeat function for part of the actions. For example, there are basically 2 components to playing: Preparation, and While Playing.

Preparation components would be stuff like:
1. Launch The Opener.
2. Log in to Party Poker.
3. Log in to Full Tilt.
etc.

While Playing components would be stuff like:
1. Check all tables that are you playing on for fish. If a table is only regulars, leave that table.
2. Search the PokerStars lobby for 10/20 PLO games.
etc.

Now the preparation actions only have to be done once, but the while playing actions are done continuously and for this reason, I would like them to loop. For example, let's say I have 10 while playing actions. When I complete #10, the AHK script would go back to #1.
Code:
;Software that reminds you of what to do.
;preparations runs first and one time only.
;When all preparations has ran the actions
;for "while playing" itterats as long as
;the script is open.

;==========================================================================================================
;================================== EDIT THIS =============================================================
;==========================================================================================================
preparation1 = Launch The Opener.							
preparation2 = Log in to Party Poker.
preparation3 = Log in to Full Tilt.

whilePlaying1 = Check all tables that are you playing on for fish. If a table is only regulars, leave that table.
whilePlaying2 = Search the PokerStars lobby for 10/20 PLO games.
;==========================================================================================================
;==========================================================================================================
;==========================================================================================================

Loop
{
	if !preparation%A_Index%
	{
		totalPreparations := A_Index - 1
		break
	}
}

Loop
{
	if !whilePlaying%A_Index%
	{
		totalWhilePlaying := A_Index - 1
		break
	}
}

component := 1
action := 1

Gui, Font, s14, Verdana
Gui, Add, Text, x10 y10 w335 h95 vactionText, %preparation1%
Gui, Add, Button, x10 y115, Check
Gui, Add, Text, x120 y120 w225 vactionCounter, Preparation %action%/%totalPreparations%
Gui, Show,h165 w350, Action checker

return
;=====================================================
ChangeAction(component,action)
{
	global
	
	if (component = 1)
	{
		text := preparation%action%
		Guicontrol,,actionCounter, Preparation %action%/%totalPreparations%
	}
	else
	{
		text := whilePlaying%action%		
		Guicontrol,,actionCounter, While playing %action%/%totalWhilePlaying%		
	}
	
	GuiControl,,actionText, %text%
	
	return
}
;=====================================================
ButtonCheck:
action++

if (component = 1)
{
	if !preparation%action%
	{
		component := 2
		action := 1
	}
}
else
{
	if !whilePlaying%action%
	{
		action := 1
	}
}

ChangeAction(component,action)

return
;=====================================================
GuiClose:
ExitApp
;=====================================================
Quick Questions & Answers Thread Quote
08-07-2009 , 04:13 PM
A while back ago (1-2 years?) there was a thread about speeding up sql by changing some variables in the config files. I did a search and wasn't able to find it. Can anyone who knows what thread I'm talking about post the link.

That would be great mate!
Quick Questions & Answers Thread Quote
08-07-2009 , 04:19 PM
I found the information in an email to myself. I hope it works!

1.) Find your postgresql.conf file and open in notepad. Mine was in
C:\Program Files\PostgreSQL\8.2\data

- Set 'shared_buffers' to 1/4 of your total memory
- Set 'effective_cache_size' to 1/2 of your total memory [and uncomment it]
- Set 'redirect_stderr' [log writing] to 'off'

3.) Restart

-. ) Vacuum analyze from time to time
Quick Questions & Answers Thread Quote
08-07-2009 , 07:46 PM
Quote:
Originally Posted by castlevania
A while back ago (1-2 years?) there was a thread about speeding up sql by changing some variables in the config files. I did a search and wasn't able to find it. Can anyone who knows what thread I'm talking about post the link.

That would be great mate!
Quote:
Originally Posted by castlevania
I found the information in an email to myself. I hope it works!

1.) Find your postgresql.conf file and open in notepad. Mine was in
C:\Program Files\PostgreSQL\8.2\data

- Set 'shared_buffers' to 1/4 of your total memory
- Set 'effective_cache_size' to 1/2 of your total memory [and uncomment it]
- Set 'redirect_stderr' [log writing] to 'off'

3.) Restart

-. ) Vacuum analyze from time to time


I would recommend you use the Enterprise Tuning Wizard for PostgreSQL that comes in StackBuilder.

http://www.holdemmanager.net/faq/afmmain.aspx?faqid=172

I would also recommend you turn off logging, delete your logs, vacuum/analyze, reindex, defrag, etc..

http://www.holdemmanager.net/forum/s...ad.php?t=11194
Quick Questions & Answers Thread Quote
08-08-2009 , 01:34 AM
can you use pokertracker on cake? thanks
Quick Questions & Answers Thread Quote
08-08-2009 , 04:12 PM
are there any scripts/how hard would it be to write a script that copied my opponent's name to the clipboard (on PS and FTP)? I know PSC does this, but too many bugs for me to use that right now, and I don't want the other features possibly interfering w/ anything
Quick Questions & Answers Thread Quote
08-08-2009 , 06:46 PM
Homebrew rocks! Irrelevant, but true

Juk

Last edited by jukofyork; 08-09-2009 at 06:35 AM. Reason: Hmmmm, it also give your a bloody awful hangover too... ugg.
Quick Questions & Answers Thread Quote
08-08-2009 , 08:19 PM
Hey guys,

Lately my progress on the forums has been slow due to the fact that for the past month or so I can't seem to post any hands because the converter wont work for me. I am using HEM amd when I view selected HH and then copy it, then come here here and paste it in the converter, when I hit convert nothing happens? Is there another way to do this?
Quick Questions & Answers Thread Quote

      
m