Jump to content

Flip

Regular User
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

Flip's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I had my computer built for hardcore gaming, therefore I never have problems, 6gb ram, 400 series Nvidia, but I had a computer before and I use to have FPS problems all the time on World of Warcraft and Counterstrike. It only had 1gb ram, more then likely overcloking the cpu and overheating the whole thing. Here are a few things that may help you, but upgrading your ram/video card always helps for gaming. Graphics tweaks Intro to tweaking Here I'll go through some tweaks that can help boost your FPS (frames per second). A good FPS can make a world of difference; it's just damn hard to shoot enemies if they keep "warping" across your screen. Your FPS is determined mainly by 3 things: * CPU clock speed (ghz) * Graphics card * RAM Unfortunately, there's not much you can do to change these, which doesn't involve paying money... You can try overclocking your CPU; this can make a 1.7 Ghz processor go at the speed of a 2.0 ghz processor for example. However, this can cause your CPU to overheat (not a good thing). You can try getting a new graphics card, but it might not boost your performance much if your processor is the problem. For example, if it's a wimpy 866mhz, then a shiny Geforce FX card isn't going to save you. There are some things you can control though: * Drivers: this is the code that "talks" to your hardware. (like, "video card, draw a picture!") Sometimes drivers are poorly written or have some compatability problem that makes it run slowly on your system. So, if you know you have a kickass system, but you're not getting the performance you expect, try updating drivers for your video and sound cards. Keep in mind the "latest" drivers aren't always the best, although usually they are. * Tweaking: That's what this whole section is about. Now before you begin tweaking, make sure to add "cg_drawfps 1" to your config, so you can see your frame rate. Tweaking cvars in the console There are a couple of cool things you should know about entering cvars in the console... Firstly, you can press TAB while entering a cvar and the name will be completed... For example, type "/cg_wol", and then press TAB, and ET will automatically fill the rest for you ("\cg_wolfparticles "). Suppose you type in "/r_ati", and then hit TAB. Well, there are multiple commands that start in "r_ati", so instead of auto-completing it, a list will be displayed in the console: ]/r_ati [tab] r_ati_truform_pointmode = GL_PN_TRIANGLES_POINT_MODE_LINEAR r_ati_truform_normalmode = GL_PN_TRIANGLES_NORMAL_MODE_LINEAR r_ati_truform_tess = 1 r_ati_fsaa_samples = 0 This is just a handy thing to know, you could get a list of all cg_ variables for example by typing "cg_" then pressing TAB. You can also find out the current value and default value of any cvar by simply typing its name (with a slash) at the console: ]/r_texturemode "r_texturemode" is:"GL_LINEAR" default:"GL_LINEAR_MIPMAP_NEAREST" Finally, let's say you mess up some cvar... Then, to reset it back to the default value, simply type in "/reset (cvar)" in the console... For example: ]/reset g_gravity Tweaks set com_maxfps <n> This lets you cap your FPS to some value. Due to numerical error in the Q3 engine, trickjumps work best at a steady FPS of 43 (good), 76 (great), or 125 (best). So if you want a steady FPS of 76 for example, then try to get your average FPS to be something like 80-90 (set com_maxfps to some really big number while you're doing this so you can see you`r true FPS without capping). Then once you are satisfied with the performance, add "com_maxfpx 76" to your config to cap it. Ex: set com_maxfps 76 set r_picmip <n> The bigger n is, the crappier your textures look, but it may improve performance on older video cards. Default value for n is 1. Allowed values are from 0 to 3. Ex: set r_picmip 3 set r_picmip2 <n> Similar to r_picmip. The default is already 3, so I don't see any reason to change it. You might be able to get better quality by lowering it, but as far as I can tell, the difference isn't noticeable. set cg_wolfparticles <n> This is 1 by default. If you notice your system slows down any time an airstrike goes off, then set this to 0. Besides boosting your FPS, turning off particles will also let you see through airstrikes more easily so you can shoot at people on the other side. The only disadvantage is that, without particles turned on, you might run into artillery strikes more often. One option is to create a toggle script: Ex: bind "K" toggle cg_wolfparticles set cg_atmosphericeffects <n> Turns on/off effects like rain or snow. There's really No reason why you would ever want this to be on, it just makes it harder to see and lowers your frame rate... Ex: set cg_atmosphericeffects 0 set r_gamma <n> Higher values of n make your screen brighter, so you can spot enemies easier. Default is 1.0, allowed values are from 0 to 3. I recommend making your screen brighter because it lets you see targets more easily. Be careful you don't set it too high, otherwise levels like fueldump or radar with lots of snow will be way too bright. Ex: set r_gamma 2.2 set r_intensity <n> Higher values of n make your screen brighter. Default is 1.0, allowed values are from 0 to 1.5 Ex: set r_intensity 1.2 set r_mapoverbrightbits <n> Higher values of n make the shadowy parts of a map lighter, so you can spot enemies hiding in darker areas. Default is 2, allowed from 1 to 3. Setting it to 3 may help see targets that are hiding in shadows Ex: set r_mapoverbrightbits 3 set r_dynamiclight <n> Turns on (n=1) or off (n=0) dynamic light. Dynamic light is used very little in the game. I suggest you leave it on, because it is what makes the "glow" around dynamite, which is very useful to know when dyno has been planted. Ex: set r_dynamiclight 0 set cg_shadows <n> Turns on (n=1) or off (n=0) the little circular shadows that appear under your feet. Set this to 0 if you want, although the FPS boost will probably be negligible. Ex: set cg_shadows 0 set r_finish <n> Setting this to 1 enables "sync every frame". This is ONLY important if you have some device lag, like mouse or keyboard. (Perhaps if you have a wireless mouse and you find it lags behind your actions). If you don't notice your keyboard or mouse lagging, then set this to 0 to gain a few FPS. Ex: set r_finish 0 set r_detailtextures <n> When detail textures are enabled (n=1), it means that basically every object is textured twice to make it look more detailed. Obviously this is slower, so try disabling this (n=0) if you want to get a nice FPS boost. Ex: set r_detailtextures 0 set r_subdivisions <n> If you want a little performance boost, set this to 999. Otherwise, set it to 4. Ex: set r_subdivisions 999 set r_texturemode <n> This lets you set texture filtering. The most common values are: (low quality): GL_NEAREST (good quality): GL_LINEAR_MIPMAP_NEAREST (a.k.a. bilinear filtering) (great quality): GL_LINEAR_MIPMAP_LINEAR (a.k.a. trilinear filtering) (good quality): GL_LINEAR In case you don't know, filtering is somewhat like antialiasing, except for textures. You can see what the game looks like without filtering by setting r_Texturemode to GL_NEAREST. It's pretty ugly, and everything is very "pixelated" or "blocky". The default is bilinear filtering, and this will give you the best performance, and pretty good quality. For "best" quality you can use trilinear filtering, although there might possibly be some dip in FPS. There's one problem with bilinear and trilinear filtering; both of them make your crosshair blurry. Personally I like to use a small crosshair, so this really annoys me because when the crosshair is blurred, I can barely see it. So, if this happens with you, then I'd suggest using GL_LINEAR. This mode will filter the textures and looks almost as good as bilinear filtering; yet the crosshair will still appear pretty sharp. BUT, be warned, using GL_LINEAR will likely cause a noticeable decrease in your FPS. You could even use GL_NEAREST as your filtering mode but I wouldn't recommend it, because it looks like crap. I actually used to use this because, well, I didn't know about GL_LINEAR at the time Ex: set r_texturemode GL_LINEAR set r_fastsky <n> If you set this to 1, it will just draw a solid color for your sky. This may give you a slight improvement in your FPS. It's not much, but then again, who cares how pretty the sky looks? Ex: set r_fastsky 1
  2. Flip

    Yelling at Cats

    Hope you like this. http://www.youtube.com/watch?v=hddCpJ8MfVo
  3. That was very kind, my heart goes out to your family. God bless.
  4. Just wanted to introduce myself, my online name is Flip, I am 27 from Louisville, Kentucky I play on Jaymod #1. Nice to meet everyone.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.