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

11-13-2010 , 12:48 AM
naw, i have no idea then. you could always make an ahk script to push a key once in a while as a temporary fix.
Quick Questions & Answers Thread Quote
11-13-2010 , 09:35 AM
Alright, I appreciate the help. I spent some time yesterday looking for a solution, but I couldn't find an answer. I have never written an AHK script. Any chance I could find this written somewhere? If not, where can a find a person to do this for a fee? Is there a programming forum somewhere I can go?

Last edited by 3-Iron; 11-13-2010 at 09:38 AM. Reason: misread faq
Quick Questions & Answers Thread Quote
11-13-2010 , 04:53 PM
This is the programming forum. However I'd be certain such a script won't help - the keyboard will be shutting itself down to conserve battery power, I very much doubt it's done on the Windows side of things.
Quick Questions & Answers Thread Quote
11-13-2010 , 10:13 PM
With the new Stars Time Bank post update I seem to be timing out and sitting out pretty often. I used to use Stars Assistant for many things although at this point I only use it to click the Time Bank when I am behind.

Is there a stand-alone AHK script that will do this or barring that a simple edit to Stars Urgent Table or StarsAssistant that will take care of this. I ask here because _dave_ is the original author or the scripts.
Quick Questions & Answers Thread Quote
11-13-2010 , 10:44 PM
yeah there will be a trivial edit to both urgent table and assistant (in fact, it'll be the exact same edit!). There is a line where it clicks the time bank at certain X/Y coordinates, probably the only postmessage line in the while script (urgent table anyhow). I'll have a look exactly where but it prob won't be until tomorrow, gotta sleep soon so I can get up for the F1 finale.
Quick Questions & Answers Thread Quote
11-13-2010 , 11:27 PM
Quote:
Originally Posted by _dave_
yeah there will be a trivial edit to both urgent table and assistant (in fact, it'll be the exact same edit!). There is a line where it clicks the time bank at certain X/Y coordinates, probably the only postmessage line in the while script (urgent table anyhow). I'll have a look exactly where but it prob won't be until tomorrow, gotta sleep soon so I can get up for the F1 finale.
Thanks, _dave_!
Quick Questions & Answers Thread Quote
11-15-2010 , 12:28 AM
I wasn't sure if this was worthy of a new thread, or even allowed (the FAQ confused me regarding offering a reward for software vs. advertising a private job), but anyway:

I'd like someone to create a piece of software for me that can basically automatically run equity calculations from a site like www.propokertools.com for the certain ranges that I put in and then input the results into a spreadsheet. It would be for PLO. I've been doing this manually for a while but it would just be soo much easier if I could say put in xxxx vs top 3%, vs top 10%, vs top 25%, vs top 50%, vs top 100% and have the results put into a spreadsheet (not completely required, a simple text format would be better then I can move them from that to my own spreadsheet).

I'd be willing to pay for it (not sure how much it would cost to make, but whatever the going rate is for something like this I will pay).

Cheers,

Roy
Quick Questions & Answers Thread Quote
11-15-2010 , 07:24 AM
I'm sure I remember seeing a AHK that would let you give a stars player a note (1-9) by mousing over and Ctrl+1-9 for example.

Or did I just imagine it?
Quick Questions & Answers Thread Quote
11-15-2010 , 08:52 PM
I posted such script, i'm not sure if it still works fine or not
Code:
#noenv
#SingleInstance, Force

SetWinDelay,-1

SysGet, xbord, 32
SysGet, cap, 4
return

^1::
Noteselect(1)
return

^2::
Noteselect(2)
return

^3::
Noteselect(3)
return

^4::
Noteselect(4)
return

^5::
Noteselect(5)
return

^6::
Noteselect(6)
return

^7::
Noteselect(7)
return

^8::
Noteselect(8)
return

^9::
Noteselect(9)
return

;-----------------------------------------------------------------------------------------------------
Noteselect(number)
{
mousegetpos,,,winid
wingetclass,class,ahk_id%winid%
if class=PokerStarsTableFrameClass
{
dclick(winid)
ColorNoteControlClick(number)
}
}
;-----------------------------------------------------------------------------------------------------
dclick(winid)
{
global xbord,cap
coordmode,mouse,relative
mousegetpos,x,y
PostLeftDoubleClick(x-xbord, y-xbord-cap, winid, 1)
}
return
;-----------------------------------------------------------------------------------------------------
ColorNoteControlClick(id)
{
winget,winid,id,A
ControlGet, v, Visible,,PokerStarsNoteSelectorClass1, ahk_id %Winid%
if v
{
BlockInput, MouseMove
wingetpos,x1,y1,w1,h1,ahk_id%winid%
coordmode,mouse,screen
mousegetpos,x2,y2
ControlGetPos, x, y, w, h, %Edit1%, ahk_id %Winid%
DllCall("SetCursorPos", int, x+x1+10, int, y+y1+10)
send {Click left}
DllCall("SetCursorPos", int, x+x1+10, int, y+y1+10+id*17)
send {Click left}
DllCall("SetCursorPos", int, x2, int, y2)
BlockInput, MouseMoveOff
}
}
return
;-----------------------------------------------------------------------------------------------------
PostLeftDoubleClick(x, y, table_id, activate=1) {
If activate
 WinActivate, ahk_id%table_id%
critical,6
PostMessage, 0x203 , 0, ((y<<16)^x), , ahk_id%table_id%
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id%
critical,off
sleep,-1
}
return
;-----------------------------------------------------------------------------------------------------
Quick Questions &amp; Answers Thread Quote
11-15-2010 , 09:01 PM
Thats the one thanks I will give it a spin later.
Quick Questions &amp; Answers Thread Quote
11-16-2010 , 02:00 AM
Is it possible to edit PokerStars and Full Tilt notes on players while offline? For example, let's say I want to add notes on a player that I do not currently have any notes on, would this be possible? If so, how? Thanks.
Quick Questions &amp; Answers Thread Quote
11-16-2010 , 02:32 AM
It's certainly possible (They are both plain XML files now IIRC), but I'm not sure there are any apps to do it just yet. There are apps to auto-note them from a database I believe (note caddy for one).
Quick Questions &amp; Answers Thread Quote
11-18-2010 , 08:35 PM
Quote:
Originally Posted by _dave_
yeah there will be a trivial edit to both urgent table and assistant (in fact, it'll be the exact same edit!). There is a line where it clicks the time bank at certain X/Y coordinates, probably the only postmessage line in the while script (urgent table anyhow). I'll have a look exactly where but it prob won't be until tomorrow, gotta sleep soon so I can get up for the F1 finale.
_dave_, I hate to pester you but have you had any chance to look at this? Thanks!
Quick Questions &amp; Answers Thread Quote
11-18-2010 , 09:26 PM
Quote:
Originally Posted by vinyard
_dave_, I hate to pester you but have you had any chance to look at this? Thanks!
no worries, I need reminding often! tbh I haven'tplayed since, I need this fixed myself too

just had a quick look.

Edit the script file, there are a couple of lines "timbank_x" and "timebank_y"

I set this to:
Code:
timebank_x := 520
timebank_y := 460
This seems to work well on 6m cash at least. I'll check other layouts soon enough, but I think the timebank position is consistent now.
Quick Questions &amp; Answers Thread Quote
11-18-2010 , 10:50 PM
Quote:
Originally Posted by _dave_
no worries, I need reminding often! tbh I haven'tplayed since, I need this fixed myself too

just had a quick look.

Edit the script file, there are a couple of lines "timbank_x" and "timebank_y"

I set this to:
Code:
timebank_x := 520
timebank_y := 460
This seems to work well on 6m cash at least. I'll check other layouts soon enough, but I think the timebank position is consistent now.
Works like a charm for FR as well. As always, thanks!
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 11:16 AM
Hi all - hope this is the right polace for this question.

I installed pt3 demo today after previously trying hold em manager. On starting up PT3 it asked for the postgre sql password. As far as I can tell all of the default settings were already in the box, but it wouldn't start up, it said I had the wrong password.

I decided to uninstall holdem manager and postgre sql, then reinstall the latest version of postgre sql.

When I uninstalled hold em manager windows xp told me it hadnt uninstalled some files.

I uninstalled postgre sql, then downloaded the latest version and am now trying to install it. Setup is runing and it is asking me for the password for the database superuser and service account, but I do not know what these are. Has hold em manager changed these passwords or something?

New to pcs but not computers generally (always beena mac boy) and any help would be appreciated, have searched here and googled but struggle with the volume of replies.

Thanks very much
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 11:18 AM
PT3's default name/password is - postgres/dbpass
HM's default name/password is - postgres/postgrespass

1) Uninstall PostgreSQL from the Windows Control Panel.
2) run the command - start > programs > accessories > command prompt > right-click > run as administrator
[PHP]net user postgres /delete [/PHP]

You should delete the leftover \Postgresql files.

4) reboot.
5) Install PostgreSQL
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 12:24 PM
Hi thanks very much for the reply.

Am not allowed to run command prompt as an administrator even though in start > settings > control panel ... User Accounts the account I logged in as is marked as 'Computer Administrator'.
I get the message 'Unable to log on: Longon failure: unknown user name or bad password.'

I changed the password, rebooted and logged in with this account name and password, then tried again without luck.

If I open up Start > Run, then type 'net user postgres /delete' then search for 'postgres' I get a lot of folders/files still found.

Folders called Postgres and PostgreSQL in c\Documents and Settings, and PostgresSQL in C:\Program Files

I am guessing I havent properly deleted PostgresSQL and it is because I havent managed to logon as an adminstrator but am not sure. Should I just delete the files that are left or try something else?

Thanks again really helpful. Appreciate it...
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 12:30 PM
Actually just realised that maybe I should have replaced 'user' with my user account. DOne that still have the same postgres files after searching in windows explorer (if that is what it is called...)

THanks

Edit - after typing this I get 'The syntax of this command is......'
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 12:53 PM
Delete all the leftover postgres/postgresql files. Did the command prompt say 'command completed successfully'?

Install PostgreSQL 8.3.9 from this link and it should handle all of those user/password issues - http://www.holdemmanager.com/downloa...3.9-v1.0.7.exe

username/pass will be postgres/postgrespass, so you will need to change that in the PT3 DB Management settings.
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 01:06 PM
Didnt say command completed successfully, but I havemanaged to install postgreSQL.


NOw though when I open up pokertracker it appears that all of the hands I had from the last 2 weeks appear to have disappeared... WOuld this happen when I uninstaled hold em manager or something? Bit annoying if so.
Quick Questions &amp; Answers Thread Quote
11-19-2010 , 02:06 PM
It would happen when you reinstall postgresql which contains your database. PT3 won't read your HM database. You have to create a PT3 database and import the hands. If you play a site like stars/ftp you can email their support and ask for all your old hand histories and tourney histories/results.
Quick Questions &amp; Answers Thread Quote
11-20-2010 , 12:14 PM
My HEM stopped working in the middle of a session and it missed some hands. Is there any way I could get those imported to my HEM? I play at Ongame network.
Quick Questions &amp; Answers Thread Quote
11-20-2010 , 01:57 PM
To get all your missed hands imported

1) Right-Click your Desktop > New > Folder.
2) Go to your \HMArchive folder - To verify the path, go to Options > Configure Auto Import Folders > Edit > Archive Folder: _________.
3) Open that folder and copy the hands (folders of hands) you think it has missed. The archive should be organized by \Month\DayOfMonth (example: D:\HMArchive\2009\07\31). Also get any hand files that are in your \poker site\hand history folder.
4) Paste them into your new desktop folder > HM > Import From Folder.


If they still dont show up, try importing them to a new database to be sure your current database isnt corrupt.
Quick Questions &amp; Answers Thread Quote
11-20-2010 , 02:04 PM
Quote:
Originally Posted by _dave_
It's certainly possible (They are both plain XML files now IIRC), but I'm not sure there are any apps to do it just yet. There are apps to auto-note them from a database I believe (note caddy for one).
I hate to be a spammer but NC does allow you to manually write notes directly into the full tilt/stars client files without having the respective poker client open.

tools->color coding->manual.

You can change their colors there as well as their actual client notes
Quick Questions &amp; Answers Thread Quote

      
m