Open Side Menu Go to the Top
Register
Party Client - Lag - Setting Priority to High Party Client - Lag - Setting Priority to High

02-07-2008 , 06:02 PM
I couldn't find the old thread that talked about this but setting partygaming.exe priority to high does seem to help with my lag. I'm wondering though if there is a way to make it so partygamining is always set to high priority or do I always have to go in and manually change it each session?
Party Client - Lag - Setting Priority to High Quote
02-07-2008 , 08:03 PM
edit the shortcut to pp

change the command line to look like this:

start /high "c:\Program Files\PartyPoker\bblablah"
Party Client - Lag - Setting Priority to High Quote
02-07-2008 , 08:34 PM
Getting an error message:
"The folder start / high "C:\..." specified in the Start In Box is not valid."

Am I taking what you typed too literally? ;o
Party Client - Lag - Setting Priority to High Quote
02-07-2008 , 08:40 PM
no space between / and high
Party Client - Lag - Setting Priority to High Quote
02-07-2008 , 11:43 PM
If you really can't get the shortcut to work propely, a very short AHK can do the job and I'll happily post it - but "start /high myprogram.exe" is normally fine.
Party Client - Lag - Setting Priority to High Quote
02-08-2008 , 03:33 AM
I must be officially ******ed. I cannot seem to get this to work. Currently I use a .bat file to launch all my poker apps and this is what my line to start party looks like:

cd "C:\Program Files\PartyGaming\PartyPoker"
start RunApp.exe

changing it to start /high runapp.exe does not seem to work.


Alternatively I can't seem to get this to work by using my shortcut to partypoker (error as above) or to partygaming.exe/runapp.exe.
Party Client - Lag - Setting Priority to High Quote
02-08-2008 , 08:39 PM
Anyone?
Party Client - Lag - Setting Priority to High Quote
02-08-2008 , 08:57 PM
try this (save as an AHK).

Code:
#NoEnv
#SingleInstance, Force
Loop
{
  Process, Exist, PartyGaming.exe
  if (ErrorLevel)
  {
    Process, Priority, %ErrorLevel%, H
  }
  Sleep, 60000
}
lol - I can't remember the bat file or shortcut thing accurately

This will check every minute for a partygaming, if so - set it to high
Party Client - Lag - Setting Priority to High Quote
02-09-2008 , 02:39 AM
Delete the target in the shortcut and copy this in it's place.

Code:
C:\WINDOWS\system32\cmd.exe /c start "PartyGaming" /high "C:\Program Files\PartyGaming\PartyGaming.exe" -P=PartyPoker
Party Client - Lag - Setting Priority to High Quote
02-09-2008 , 01:16 PM
Sputnik365: thanks, thats exactly what I needed.

_dave_: that would have worked for me also thanks
Party Client - Lag - Setting Priority to High Quote

      
m