Yep, I did say I would help and I will, but in order to do this, I have to teach you first a little about writing a config. A config is just a list of preferences the game uses to control and display the game. Display is your first issue:
All computers are different and have different reactions when display settings are changed. I personally specify these settings in my config:
Code: Select all
SETA r_mode "6"
//This is display resolution. Mode 6 is 1024x768
SETA ui_r_mode "6"
//Same thing but for the menu screen when you load ET up.
SETA r_gamma "2.3"
//This is the 'brightness' of the game. This can also be changed by using the brightness slider in options, but that only navigates between 0 and 2 in gamma. PB allows 0 to 3 and my display is fairly neutral at 2.3 FIND YOUR OWN SETTING. You can change this option in game by simply typing into the console /r_gamma XX to change it there and then and see the result. When you find the one that works for you then write the value into your config. If the game keeps having its gamma snatched by other applications loading or interfering, then I made a gamma toggle script here: [url]http://www.bbaservers.com/ftopict-6216.html[/url]
SETA com_maxfps "125"
//Max frames per second. 43, 76, 125 or 333 are the magic numbers to jump higher.
SETA cg_drawgun "1"
//Is your gun visible? There are scripts I can write to change this on a per weapon basis.
SETA cg_muzzleFlash "0"
//Does your gun blind you when you shoot? NO!!!
SETA cg_showblood "0"
//Wanna see blood? It'll cost you GPU cycles. No worth it.
SETA cg_wolfparticles "0"
//Particles that make smoke all pretty and hard to see through...
SETA cg_atmosphericEffects "0"
//Things like Fog distance and even smoke trails from artillery spots.
SETA cg_shadows "0"
//Self-explanatory
SETA cg_marktime "10000"
//How long do bullet holes and explosion marks last? I advise having this as it can give warning of hot areas and mortar strikes.
SETA cg_gibs "0"
//As amusing as it is, there's no point focusing on a dismembered limb.
SETA cg_coronas "0"
//Shine orbs around light sources.
SETA cg_coronafardist "0"
//Corona visible distance
SETA r_drawsun "0"
//Self-explanatory
SETA r_flares "0"
//Beams of light from light sources.
//Some people are probably wondering, where's /cg_fov? I have never used any other setting than the default 90 that came with the game. I have never needed or wanted to change. The PB range limit is 60 (not sure about that) to 120 with the game default being 90. Some people play with a wider fov (field of view) to compensate for having widescreen, some people just wanna see more. I just turn more often... Y'know... Look around...
//There are many other CVARS to do with display such as overbrightbits, but I assume the brightness of the terrain in your game matches the brightness of the players, yes? Correct me if I'm wrong.
Most people will ask you to write the config and save it as autoexec.cfg so it will auto-execute when the game loads up. I suggest against this. The game choses to remove and write values to the autoexec.cfg file without your permission and if you don't include all settings, defaults will be used as the value.
I save mine as clap.cfg and being that I use the SETA command, it writes these values into your config in your profile, so you only really need to execute it once. To do this, in game (preferably when in team) in the console, type:
If your config contains spaces in the name, you HAVE to use "" to enclose the filename. You don't have to include the .cfg as this is expected by the exec command. And if you have a one word filename like mine, you don't need the "" enclosing the filename. All you have to type is:
So what other parts can I help you with? Remember, this is just the display excerpt from my entire script. If you want, I can post the whole thing. It is very descriptive, but it may be a little overwhelming to see all the values straight out. It might be better to take this section by section, issue by issue.