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

02-12-2009 , 08:23 PM
You can try posting inthe pt support forums here.

http://forumserver.twoplustwo.com/11...racker/?pp=100
Quick Questions & Answers Thread Quote
02-12-2009 , 09:00 PM
Quote:
Originally Posted by fozzy71
You can try posting inthe pt support forums here.

http://forumserver.twoplustwo.com/11...racker/?pp=100
Good call. I forgot about that. Thanks for posting the obvious.
Quick Questions & Answers Thread Quote
02-13-2009 , 08:20 AM
I sat out a whole sng today because it didn't open. Are there any scripts that can stop this from happening? Thanks.
Quick Questions & Answers Thread Quote
02-13-2009 , 12:27 PM
Could someone teach me some basic batch file or AHK code?

When making my FTP decks oversized I copy cards1, 2, 3, 5, 6 PNG files and rename them in windows explorer to cards0, 1, 2, 4, 5 respectively. How could I automate this and save myself 20 or 30 keystrokes?

I am currently working on photoshop actions to save me a TON of time and keystrokes when resizing my full deck sets from the original cards5 image.
Quick Questions & Answers Thread Quote
02-13-2009 , 01:39 PM
Fozzy...pretty sure you can do batch renames with Windows...hold on let me find a link.

Yeah, check this post as well as the comments. Hopefully you can find something that will work here.
http://lifehacker.com/software/windo...ulk-171909.php
Quick Questions & Answers Thread Quote
02-13-2009 , 03:18 PM
Quote:
Originally Posted by fozzy71
Could someone teach me some basic batch file or AHK code?

When making my FTP decks oversized I copy cards1, 2, 3, 5, 6 PNG files and rename them in windows explorer to cards0, 1, 2, 4, 5 respectively. How could I automate this and save myself 20 or 30 keystrokes?

I am currently working on photoshop actions to save me a TON of time and keystrokes when resizing my full deck sets from the original cards5 image.
Try this vbscript. Paste into a text file and save as whatever.vbs. Put in the same folder as the files and execute.

Code:
'//Create filesystem object
Set objFSO = CreateObject("Scripting.FileSystemObject")

for i = 1 to 999

	file = "cards" & i & ".png"

	IF objFSO.FileExists(file) THEN
		newFileName = "cards" & i-1 & ".png"
		objFSO.MoveFile file , newFileName
	END IF

next
Quick Questions & Answers Thread Quote
02-13-2009 , 04:28 PM
I have an issue with Pokerstars.

WHen i click right click on pokerstars tables, "table themes" menu automatically pops out for some reason. It has been happening for about 2 months already. Anyways I can solve it? It happened ever since I tried to change the table background. I also use AHK scripts but even if AHK scripts are turned off, the "table themes" menu still pops out. Any way to solve this? =(
Quick Questions & Answers Thread Quote
02-13-2009 , 04:33 PM
In the lobby:
Options->Right-Click Table to Show Table Themes
Quick Questions & Answers Thread Quote
02-13-2009 , 06:32 PM
Anyway with CamStudio to get it to record the HUD?
Quick Questions & Answers Thread Quote
02-13-2009 , 06:43 PM
Quote:
Originally Posted by Mark1978
I sat out a whole sng today because it didn't open. Are there any scripts that can stop this from happening? Thanks.
Not afaik. I assume this was on PokerStars? This is a known problem and has only started to happen recently. I've been checking my registered tournaments every chance I get, but it's super annoying having to do so. Post in the Stars thread found in the zoo and thank them. Losing an entire buy-in is great for our hourly. FTP does this too but only if you disconnect for a second when the game is starting (afaik).
Quick Questions & Answers Thread Quote
02-13-2009 , 06:44 PM
Quote:
Originally Posted by a nonymous
I'm using PlaceMint and I have the F5 thing enabled. Sometimes my Stars tables don't redraw properly (so I can only see part of the table). I have to drag an edge of the table and then they redraw and I can see everything. This is really annoying. Any ideas on how to fix it? I'm posting in PlaceMint thread too but I feel like this might be a separate issue since I have the F5 thing enabled.
I added f5redrawtable=1 to my user.ini file and I'm still having this problem. Any ideas?

My user.ini has almost nothing in it. Is that standard? I thought I remembered my file having a lot more in it on my last system.
Quick Questions & Answers Thread Quote
02-13-2009 , 07:46 PM
I just figured out why my all in/pot/max FTS key isn't working. It's the Keyboard Redirect script. Any way around this? I would really like to continue to use the script. I couldn't post in the official KR thread as it is in the archives.

Ty.
Quick Questions & Answers Thread Quote
02-13-2009 , 07:56 PM
ty
Quick Questions & Answers Thread Quote
02-13-2009 , 09:05 PM
Quote:
Originally Posted by Neko
Fozzy...pretty sure you can do batch renames with Windows...hold on let me find a link.

Yeah, check this post as well as the comments. Hopefully you can find something that will work here.
http://lifehacker.com/software/windo...ulk-171909.php
Quote:
Originally Posted by Mark1978
Try this vbscript. Paste into a text file and save as whatever.vbs. Put in the same folder as the files and execute.

Code:
'//Create filesystem object
Set objFSO = CreateObject("Scripting.FileSystemObject")

for i = 1 to 999

	file = "cards" & i & ".png"

	IF objFSO.FileExists(file) THEN
		newFileName = "cards" & i-1 & ".png"
		objFSO.MoveFile file , newFileName
	END IF

next
thx for the links/tips. I may actually just make a couple extra custom actions to have photoshop do it while I am making the originals that I would normally rename. I cant believe all the repetitive stuff I do in pshop, and I have never really taken advantage of the custom actions recordings to macro my steps.

Quote:
Originally Posted by Vern
Anyway with CamStudio to get it to record the HUD?
in camtaasia there is an option to 'record layered windows'. I have no idea where, or if, it exists in camstudio.
Quick Questions & Answers Thread Quote
02-14-2009 , 12:04 AM
Quote:
Originally Posted by a nonymous
I added f5redrawtable=1 to my user.ini file and I'm still having this problem. Any ideas?

My user.ini has almost nothing in it. Is that standard? I thought I remembered my file having a lot more in it on my last system.
Sounds like you edited the old user.ini - do pokerstars "help -> open my settings folder..." to find the full one.

Quote:
Originally Posted by a nonymous
I just figured out why my all in/pot/max FTS key isn't working. It's the Keyboard Redirect script. Any way around this? I would really like to continue to use the script. I couldn't post in the official KR thread as it is in the archives.

Ty.
Edit keyboard redirect script, delete the desired key from the big list of stacked hotkeys at the start.
Quick Questions & Answers Thread Quote
02-14-2009 , 12:52 AM
Quote:
Originally Posted by fozzy71
thx for the links/tips. I may actually just make a couple extra custom actions to have photoshop do it while I am making the originals that I would normally rename. I cant believe all the repetitive stuff I do in pshop, and I have never really taken advantage of the custom actions recordings to macro my steps.


......
omg, i cant believe I never did this before. It easily saves me an hour or more for each deck mod I make. I just resized 2 decks, 4 versions of each, in way less time than it would normally take to do only one of the 2 deck sets.
Quick Questions & Answers Thread Quote
02-14-2009 , 02:04 AM
Quote:
Originally Posted by _dave_
Sounds like you edited the old user.ini - do pokerstars "help -> open my settings folder..." to find the full one.
You were right, that gives me a file w/ a long list of stuff. Unfortunately, f5redrawtable=1 is already in that user.ini file.



Quote:
Originally Posted by _dave_
Edit keyboard redirect script, delete the desired key from the big list of stacked hotkeys at the start.
tytyty

Last edited by a nonymous; 02-14-2009 at 02:04 AM. Reason: What would I do without you?
Quick Questions & Answers Thread Quote
02-14-2009 , 02:05 AM
Quote:
Originally Posted by a nonymous
You were right, that gives me a file w/ a long list of stuff. Unfortunately, f5redrawtable=1 is already in that user.ini file.
did you make sure to go to the other (blank) user.ini file in the installation directory, and delete the f5=redraw entry you made?
Quick Questions & Answers Thread Quote
02-14-2009 , 02:10 AM
Quote:
Originally Posted by fozzy71
did you make sure to go to the other (blank) user.ini file in the installation directory, and delete the f5=redraw entry you made?
No...

Appears to be working now though.

tytyty
Quick Questions & Answers Thread Quote
02-14-2009 , 03:34 AM
Quote:
Originally Posted by a nonymous
Not afaik. I assume this was on PokerStars? This is a known problem and has only started to happen recently. I've been checking my registered tournaments every chance I get, but it's super annoying having to do so. Post in the Stars thread found in the zoo and thank them. Losing an entire buy-in is great for our hourly. FTP does this too but only if you disconnect for a second when the game is starting (afaik).
Yes forgot to say Pokerstars. I'm not sure if you can read the text from the 'Registered in Tournaments' window, but if you can then you could use it along with looping through the windows to figure out what's not open. I might get around to this later.
Quick Questions & Answers Thread Quote
02-14-2009 , 06:29 AM
I'm trying to do some mass multitabling on stars. I've been managing 10 tiled fine but the consensus seems like stacking is easier on the eyes so I'm giving it a try. I've started with 6 and I'm working my way up.

There's so many script threads it's a bit overwhelming. Does anyone else who stacks have any suggestions on scripts or tips in general? The only one I'm using right now is Stars Hotkeys for the numpad to enter bets and call/fold hotkeys.
Quick Questions & Answers Thread Quote
02-14-2009 , 07:15 AM
Quote:
Originally Posted by SammyIva
I'm trying to do some mass multitabling on stars. I've been managing 10 tiled fine but the consensus seems like stacking is easier on the eyes so I'm giving it a try. I've started with 6 and I'm working my way up.

There's so many script threads it's a bit overwhelming. Does anyone else who stacks have any suggestions on scripts or tips in general? The only one I'm using right now is Stars Hotkeys for the numpad to enter bets and call/fold hotkeys.

Check out Overcards aHK Wiki.

TimeoutHelper is essential IMO.
Quick Questions & Answers Thread Quote
02-14-2009 , 07:18 AM
Quote:
Originally Posted by Mark1978
Check out Overcards aHK Wiki.

TimeoutHelper is essential IMO.
I wondered about this one. Doesn't the timebank activate automatically on stars?

EDIT: Misread script description in my haste. Still want to know for sure about the timebank though.
Quick Questions & Answers Thread Quote
02-14-2009 , 08:59 AM
Quote:
Originally Posted by SammyIva
I wondered about this one. Doesn't the timebank activate automatically on stars?

EDIT: Misread script description in my haste. Still want to know for sure about the timebank though.
Yes timebank does activate automatically.
Quick Questions & Answers Thread Quote
02-14-2009 , 08:37 PM
Which files do I need to transfer to replicate another player's HUD? (The only thing I forgot to move when I rebuilt my PC and my roommates HUD is pretty similar to mine)

Thanks in advance.

This is in HEM, not PT.

Last edited by vinyard; 02-14-2009 at 08:46 PM. Reason: Incomplete info
Quick Questions & Answers Thread Quote

      
m