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

11-09-2010 , 06:34 PM
It is relatively accurate, AFAIK. No known issues or complaints with it.

The 'how does villain see my hud' has been requested but there is no ETA for when it will be available.


HM is designed to only show your session stats at that table as we felt it was alot more useful for a couple of reasons:
1) A lot of people will have a huge amount of stats on themselves so it saves lagging issues having to show these for yourself
2) A lot of regulars are very aware of their stats and when youve alot of stats accumulated it would take a huge swing just for 1 stat to change since you've such a big sample and so there not very useful
3) Its much more beneficial to see your session stats to get an idea of how aggressive or passive people will see you since you sat at that table. (again even if its against a reg youll know yourself your overall image or at least you should)
4) You can easily check your overall stats in the reports section to remind any stats but again most people know their stats pretty well.
Quick Questions & Answers Thread Quote
11-09-2010 , 06:38 PM
Hmm okay, thanks man
Quick Questions & Answers Thread Quote
11-09-2010 , 10:06 PM
Quote:
Originally Posted by AceofSpades
This would be great!

Yeah, I've been looking through the help files and I guess it's just a weird overlooked part of ahk to not be able to choose an x,y location and get window info assuming it's not active.

Unless there is some function to get title of window at x,y which I hadn't been able to find.
Here you go then, here is my function - took me a while to find!

Code:
WinFromPoint(x,y)
{

  PX := x, PY := y
  VarSetCapacity(POINT, 8, 0)
  NumPut(PX, POINT), NumPut(PY, POINT, 4)
  HWND := DllCall("WindowFromPoint", "Int64", NumGet(POINT, 0, "Int64"))
  HWND := DllCall("GetAncestor", "UInt", HWND, "UInt", GA_ROOT := 2)
  WinExist("ahk_id" . HWND)
  return hwnd
}
and in use:
Code:
id := WinFromPoint(100,100)
  WinGetTitle, Title, ahk_id%id%
  WinGetClass, Class, ahk_id%id%
  WinGetPos, X, Y, W, H, ahk_id%id%
  MsgBox, %id% - %Title% - %Class% - %X%,%Y%,%W%,%H%
Quick Questions & Answers Thread Quote
11-09-2010 , 10:52 PM
Quote:
Originally Posted by _dave_
Here you go then, here is my function - took me a while to find!

Code:
WinFromPoint(x,y)
{

  PX := x, PY := y
  VarSetCapacity(POINT, 8, 0)
  NumPut(PX, POINT), NumPut(PY, POINT, 4)
  HWND := DllCall("WindowFromPoint", "Int64", NumGet(POINT, 0, "Int64"))
  HWND := DllCall("GetAncestor", "UInt", HWND, "UInt", GA_ROOT := 2)
  WinExist("ahk_id" . HWND)
  return hwnd
}
and in use:
Code:
id := WinFromPoint(100,100)
  WinGetTitle, Title, ahk_id%id%
  WinGetClass, Class, ahk_id%id%
  WinGetPos, X, Y, W, H, ahk_id%id%
  MsgBox, %id% - %Title% - %Class% - %X%,%Y%,%W%,%H%
Bookmarked, ty!

Juk
Quick Questions & Answers Thread Quote
11-10-2010 , 04:31 PM
i have a semi-outdated laptop that is a little light on resources. if i remotely connect to a hem database, would performance be any better than having the db on the laptop, or would it make no difference?
Quick Questions & Answers Thread Quote
11-10-2010 , 05:05 PM
I would think it should help some for a different hard drive to be doing all the importing/spinning.
Quick Questions & Answers Thread Quote
11-10-2010 , 05:39 PM
imo it helps a great deal to have remote db, i use it all the time. As fozzy said u have another hard disk doing the work, also another load of RAM for caching stats/queries and aonther cpu for the postgres processes.

on my setup it didn't tend to be much faster, but it does mean it almost never lags / jams up the pokerstars client (like say it can do if reloading hud on 30 tables or w/e). YMMV
Quick Questions & Answers Thread Quote
11-10-2010 , 05:56 PM
alright, cool. in that case, maybe i should just set up a box to use for a server all the time. it might help with lag in vboxes too i guess.
Quick Questions & Answers Thread Quote
11-10-2010 , 06:29 PM
the new stars update has caused the AHK BetPot script not to work. any advice? sorry if already answered somewhere - i don't browse this forum usually.
Quick Questions & Answers Thread Quote
11-10-2010 , 06:35 PM
i think you can revert back to the previous version if you need to. the rep in the stars thread said they took down the update because they had some problems with it.
Quick Questions & Answers Thread Quote
11-10-2010 , 06:37 PM
Yeah roll-back to old Stars if you can - I can't even guess how to fix for now since the update is no longer available
Quick Questions & Answers Thread Quote
11-10-2010 , 06:39 PM
thanks, but how to do i go back to the previous version of stars?
Quick Questions & Answers Thread Quote
11-10-2010 , 06:51 PM
copy your \pokerstars folder somewhere as a backup. copy the contents of \pokerstars\backup and paste it into the \pokerstars folder. run pokerstars.exe instead of pokerstarsupdate.exe
Quick Questions & Answers Thread Quote
11-10-2010 , 07:11 PM
copy everything, all the files and folders inside of \backup - ctrl+drag or ctrl+A
Quick Questions & Answers Thread Quote
11-10-2010 , 07:22 PM
ahh perfect thanks. i deleted last post because i thought i had figured it out but i hadn't.
Quick Questions & Answers Thread Quote
11-11-2010 , 03:48 AM


lol!
Quick Questions & Answers Thread Quote
11-11-2010 , 08:52 AM
That is an ugly skin/theme. Is there a way to make the sticky titles blinking neon?
Quick Questions & Answers Thread Quote
11-11-2010 , 11:39 AM
how do you attach poker tracker to your table
Quick Questions & Answers Thread Quote
11-11-2010 , 06:51 PM
so i was trying to set up remote connect for hem, but for some reason pgadmin doesn't want to let me save changes to pg_hba. the file isn't read only, and it acts like it saves, but it doesn't write anything into the file. i also tried adding the line manually, but it doesn't show up in the admin editor even though it saves just fine when i do it myself. i must just be overlooking something really stupid, because its the same on both comps, one is 8.3 and one is 8.4.

edit: also, all the restart options in admin are grayed out, although it restarts fine from services

Last edited by DaycareInferno; 11-11-2010 at 06:58 PM.
Quick Questions & Answers Thread Quote
11-11-2010 , 07:10 PM
if it saves OK when you add the line manually with notepad or w/e, it should work even if pgadmin's editor doesn't show the changes? weird imo. don't forget tto restart postgres service after editing, maybe that's required?
Quick Questions & Answers Thread Quote
11-11-2010 , 07:26 PM
i didnt try it after editing manually, because i wasn't sure if i did it right. what's already there is:

# TYPE DATABASE USER CIDR-ADDRESS METHOD

# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5


the details are just like in the editor, and easy to do manually, but i have no idea what connection type it is.

i tried restarting postres from services, but it still didnt save any changes. i also have no idea why i cant restart it in the pgadmin gui.
Quick Questions & Answers Thread Quote
11-11-2010 , 08:01 PM
it's gonna be IPv4, nothing really uses 6 yet.
Quick Questions & Answers Thread Quote
11-12-2010 , 03:58 PM
Hello,

I have the problem that my bluetooth keyboard shuts itself down if I don't hit the keys for a while. So when I want to bet size exactly in a session it takes a good 5 seconds before it start up again. How do you solve this? I can't find anything in the Control Panel. I don't care if it takes more batteries, I just want the keyboard to stay on. My keyboard is a Microsoft Mobile Keyboard 6000.

Thanks!
Quick Questions & Answers Thread Quote
11-12-2010 , 05:36 PM
control panel>keyboard>properties>hardware>properties>powe r management>allow computer to turn off etc

Last edited by DaycareInferno; 11-12-2010 at 05:51 PM.
Quick Questions & Answers Thread Quote
11-12-2010 , 07:12 PM
Quote:
Originally Posted by DaycareInferno
control panel>keyboard>properties>hardware>properties>powe r management>allow computer to turn off etc
Daycareinferno, that option is translucent so I can't click it. The only option available is the "Allow this device to bring computer out of sleep" which I'm guessing wouldn't help. Any other ideas?
Quick Questions & Answers Thread Quote

      
m