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

05-11-2009 , 10:06 PM
EDIT: Fixed it.

Last edited by a nonymous; 05-11-2009 at 10:12 PM.
Quick Questions & Answers Thread Quote
05-11-2009 , 10:11 PM
Sounds like you messed up your backgrounds.INI file. Does the table.png show fine, but the table.jpg is green?
Quick Questions & Answers Thread Quote
05-11-2009 , 10:13 PM
Quote:
Originally Posted by fozzy71
Sounds like you messed up your backgrounds.INI file. Does the table.png show fine, but the table.jpg is green?
I observed a final table but I have no final table background and so when I went back to my games it was stuck on final table. Fixed it by going to options>background instead of right clicking.

Ty.
Quick Questions & Answers Thread Quote
05-11-2009 , 10:23 PM
Yep, you need to set the final table background (in the INI file), to be the same as your black background. I forgot about that issue, sorry.

I believe you want something like this.

Code:
[Backgrounds]
Sys1="Black"
Sys2="Final"

[Black]
MenuName="Black"
Folder="Black"
FinalOnly=0

[Final]
MenuName="Final Table"
Folder="Final Table"
FinalOnly=1
Then just put the same background image in each folder.
Quick Questions & Answers Thread Quote
05-12-2009 , 12:50 AM
Is there a way to make Vista always show folders/drives in list view?
Quick Questions & Answers Thread Quote
05-12-2009 , 12:59 AM
That looks like it worked, fozzy. Ty.

Last edited by a nonymous; 05-12-2009 at 12:59 AM. Reason: lol @ sorry. Don't apologize. Appreciate the help.
Quick Questions & Answers Thread Quote
05-12-2009 , 04:05 AM
After downloading the PokerPad hotkeys from www.autohotkey.net my virusscanner detected a trojan. Is this threat for real or a flaw in AVG? Thanks in advance.

edit: Should've searched first, apparently it's harmless.

Last edited by pq1; 05-12-2009 at 04:25 AM.
Quick Questions & Answers Thread Quote
05-12-2009 , 10:39 AM
So I wrote this script to quickly click on my sorting options in the "Sort" window in the pokerstars client. The thing is I am worried about other windows stealing focus in the middle of the script causing misclicks while playing. How do I make sure the script only clicks on the "Sort" window?
Also the script would be a lot better if it automatically ran when the Sort window appeared. I have no idea how to do that either.

Code:
#NoEnv 
#SingleInstance, Force
#Persistent
SendMode Input



Tab::
{ 
  Click 174,84 
  Click 72,156 
  Click 173,170 
  Click 60,285
  Click 196,78 
  Click 195,183 
  Click 100,315
  Return

}
Quick Questions & Answers Thread Quote
05-12-2009 , 11:12 AM
If i want to trade HH's with someone, them finding my SN, stats, winrate etc is inevitable? or is there a way around that?

Thanks
Quick Questions & Answers Thread Quote
05-12-2009 , 11:15 AM
They also get to know every single one of your hole cards. Unavoidable I assume, unless you want to manually find/replace all instances of your screen name, in every HH text file. I would recommend NotePad++, instead of standard MS Notepad, if you are actually going to attempt that. They would still be able to tell your winrate, holecards, etc, but you might be able to keep your screen name private. Personally, I think if you are actually going to do something as morally grey as that, you really shouldnt be trying to obfuscate your info, while giving away all your opponents info.

Last edited by fozzy71; 05-12-2009 at 11:20 AM.
Quick Questions & Answers Thread Quote
05-12-2009 , 12:27 PM
for those with vista:

where on a vista system is pokerstars.log.0 or eqv. located?
Quick Questions & Answers Thread Quote
05-12-2009 , 12:34 PM
PokerStars Lobby > Help > Open My Settings Folder

Last edited by fozzy71; 05-12-2009 at 12:35 PM. Reason: I have XP, but have done a lot of remote support on vista machines
Quick Questions & Answers Thread Quote
05-12-2009 , 12:40 PM
i need an absolute path for a script and dont have vista installed anywhere (thank heaven)
Quick Questions & Answers Thread Quote
05-12-2009 , 12:55 PM
There isn't an 'absolute' path, it depends on the users window vista user name.

C:\Users\[Username]\AppData\Local\PokerStars\
Quick Questions & Answers Thread Quote
05-12-2009 , 01:09 PM
Quote:
Originally Posted by Everlong
i need an absolute path for a script and dont have vista installed anywhere (thank heaven)
This is probably what you need (well, you'd need to add the pokerstars stuff to the end):
Code:
EnvGet, AppDataPath, Appdata
MsgBox, %AppDataPath%
Quick Questions & Answers Thread Quote
05-12-2009 , 01:13 PM
Quote:
Originally Posted by Dread Wings
So I wrote this script to quickly click on my sorting options in the "Sort" window in the pokerstars client. The thing is I am worried about other windows stealing focus in the middle of the script causing misclicks while playing. How do I make sure the script only clicks on the "Sort" window?
Also the script would be a lot better if it automatically ran when the Sort window appeared. I have no idea how to do that either.
Lol, I had no idea that window was there...

You are better off using Control, ChooseString and ControlClick... No chance of misclicks that way.

Code:
#NoEnv
#SingleInstance force
SendMode Input

; edit to your liking:
prefs:="Wait,Asc|Plrs/Flop,Desc|<None>,Asc"

; loop endlessly, waiting for the sort window:
Loop {
    WinWait Sort ahk_class #32770
    setPrefs(prefs, winExist())
    WinWaitClose ; wait for it to close, and repeat
  }
return

; sets the prefs and closes the Sort window
setPrefs(prefs, win) {
WinExist("ahk_id" win)  ; set last-found window
StringSplit, pair, prefs, |
Loop % pair0 {
    i:=a_index
    StringSplit, pref, pair%i%, `,
    Control, ChooseString, % pref1, ComboBox%i%
    ; calculate button#:
    button#:=(pref2="Asc") ? (i-1)*2+1 : (i-1)*2+2
    ; ControlClick is unreliable, do it 5 times to make sure
    Loop 5
      ControlClick, Button%button#%
  }
WinActivate
Send {enter}
}
Having written it, I'm not quite sure what the point of this is, as Stars saves your sort settings?
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 03:01 PM
Quote:
Originally Posted by Roland
Having written it, I'm not quite sure what the point of this is, as Stars saves your sort settings?
Stars very annoyingly forgets your settings if you left-click on one of the column headers, it re-sorts the list depending on what you clicked. this is very easy to do when trying to double-click (open) the topmost table in the lobby - so this "reset filter" script is very very handy imo been meaning to make one myself for a very long time, but always the annoyance occurs at the start of a session (opening tables) then I've forgotten by the end of the session (until start of next time, lol) thanks Roland
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 03:37 PM
Wow! Thanks a lot Roland. Yeah as _dave_ said it is very easy to accidentally click on one of the column headers. I also switch between using the headers to sort and the sort window.
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 05:20 PM
Quote:
Originally Posted by Idaho_Angler
Bump for _dave_

Quote:
Originally Posted by _dave_
I'm almost asleep now so it will have to wait, but keep bumping this until I respond - I have a tiny "helper script" I run that only clicks "empty seats" when I open a table (and reserved seats too of course) - I'll post it for you. It isn't pretty or clever, but used with StarsPlanners answer waitlist = on, it means you don't have to click anything and are auto-seated on tables, even if they appear under a stack and such troubles.


Dave -- I will gladly make a small donation if you can post this "helper script"
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 06:11 PM
Quote:
Originally Posted by _dave_
Stars very annoyingly forgets your settings if you left-click on one of the column headers
Ah, it all makes sense now
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 07:09 PM
I just got a Logitech number pad. Is there any way to map the keys? I've got ( , ) , and Tab, if it matters (it has others but I need those to function normally). It also has 3 buttons on the top that launch Excel, Calculator, and Internet.

It didn't come w/ any software, but I was thinking there would be another way to do it.
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 07:20 PM
What are my options for seeing how I am running if HEM isn't working for me (other than contacting support, which I already did a long time ago)?
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 07:27 PM
a nonymous,

You can use AHK to remap the comma and tab keys. Not sure about the others.



Roland,

Your script works but when I sort by clicking on one of the column headers and then right click to bring up the sort menu, pokerstars crashes.
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 07:29 PM
Quote:
Originally Posted by a nonymous
What are my options for seeing how I am running if HEM isn't working for me (other than contacting support, which I already did a long time ago)?
I dont understand the question. HEM isn't working? PostgreSQL isn't working? Gimme some details.
Quick Questions &amp; Answers Thread Quote
05-12-2009 , 07:34 PM
Quote:
Originally Posted by fozzy71
I dont understand the question. HEM isn't working? PostgreSQL isn't working? Gimme some details.
HEM is working perfectly except for the EV$ features.
Quick Questions &amp; Answers Thread Quote

      
m