Playing Shortcutted Games in High Priority?

I gain about 5-10% performance when I play Quake 3 in High priority. . . so my question is this. . . how do I automatically set Quake 3: Rocket Arena and Quake3: Team Arena to run in high priority? I have to launch them from Windows using shortcuts like: C:\Program Files\Quake III Arena\quake3.

Windows Games 5469 This topic was started by ,



data/avatar/default/avatar16.webp

2 Posts
Location -
Joined 2001-02-07
I gain about 5-10% performance when I play Quake 3 in "High" priority...so my question is this...how do I automatically set Quake 3: Rocket Arena and Quake3: Team Arena to run in high priority? I have to launch them from Windows using shortcuts like:
""C:\Program Files\Quake III Arena\quake3.exe" +set fs_game arena +bot_enable 0 +set vm_cgame 0 +set vm_ui 0 +set sv_pure 0" in order to make them work...
 
normally with UT and Q3 I use a batch file to launch my games to set them in high priority...but the same won't work using shortcuts...is there a way around this?
 
my UT launch file looks like this:
echo off
Start /high unrealtournament.exe
 
 
thanks for any help in advance
 
[This message has been edited by Orestes (edited 07 February 2001).]

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic



data/avatar/default/avatar27.webp

1117 Posts
Location -
Joined 2000-01-23
just add the "start /high" in front of the shortcut command


data/avatar/default/avatar16.webp

2 Posts
Location -
Joined 2001-02-07
OP
could you possibly be more specific? where to I add this information? on which end? is this another batch file or in the shortcut itself? etc...
 
[This message has been edited by Orestes (edited 08 February 2001).]


data/avatar/default/avatar27.webp

1117 Posts
Location -
Joined 2000-01-23
hmmm.... on further investigation, it appears that the 'start' command is only available from the command prompt... you could just make your shortcut point to that batch file though. If you're wondering how to get all those parameters for quake3 in, you just type them at the end. For example, your batch file could look like this:
Code:
@start /high "C:\Program Files\Quake III Arena\quake3.exe" +set fs_game arena +bot_enable 0 +set vm_cgame 0 +set vm_ui 0 +set sv_pure 0
Of course, the above should all be on one line for it to work. And just fyi, the '@' accomplishes the same thing as 'echo off', but on a per-line basis. Usually, if I use echo off, I will write it as '@echo off'.