Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. // Startup Settings
  2. //
  3. con_enable "1" // default 0; Enables Console
  4. sv_cheats "1" // Enable Cheats (relax, this enables some CVARS to load, we disable it at the end)
  5. cl_forcepreload "1" // default 0; Pre-load levels entirely into RAM (only use if you have 2GB of RAM or more)
  6. // This reduces in-game stuttering, but may make you wait longer to join servers
  7. // Personal Preference (modify as desired)
  8. //
  9. //sensitivity "3.75" // default 3; Set to personal preference (less than 10 is optimal)
  10. cl_downloadfilter "nosounds" // Disables downloading of annoying SFX
  11. cl_allowdownload "1" // Allows custom downloads from servers
  12. cl_autohelp "1" // default 1; Turns off in-game help tips
  13. // Crosshair Settings
  14. //
  15. crosshair "1" // Enable crosshair
  16. cl_crosshair_alpha "255" // default 255; Sets crosshair transparency (0-255; 255 = No Transparency)
  17. cl_crosshair_red "138" // default 138; Sets crosshair color (RGB) - Red value (0-255)
  18. cl_crosshair_green "182" // default 182; Sets crosshair color (RGB) - Green value (0-255)
  19. cl_crosshair_blue "220" // default 220; Sets crosshair color (RGB) - Blue value (0-255)
  20. cl_crosshair_thickness "2" // default 2; Sets crosshair thickness
  21. cl_observercrosshair "1" // Enables crosshair in spectator mode
  22. cl_crosshair_dynamic "1" // default 1; Disables dynamic crosshair
  23. // Lighting & Material Settings
  24. //
  25. r_dynamic "0" // default 1; Disables dynamic shadows (may have no effect in l4d2)
  26. r_PhysPropStaticLighting "0" // default 1;
  27. r_ambientfraction "0.2" // default 0.2;
  28. r_radiosity "4" //
  29. mat_bloom_scalefactor_scalar ".5" // default 1;
  30. mat_monitorgamma_tv_enabled "1.6" // default 0; Increases brightness dramatically
  31. // Sound Options
  32. //
  33. dsp_enhance_stereo "1" // default 0;
  34. // Props
  35. //
  36. func_break_max_pieces "0" // default 15; Removes debris
  37. cl_phys_timescale "1.0" //
  38. // Netcode Tweaks
  39. //
  40. cl_updaterate "30" // default 20;
  41. cl_cmdrate "30" // default 30;
  42. rate "30000" // default 10000;
  43. cl_resend "1.5" // default 6; How many seconds to wait before retrying to connect to a server
  44. cl_interp "0.067" // default 0.1; Improves hit registration
  45. cl_lagcompensation "1" // default 1; Improves hit registration
  46. //net_graph "1" // default 0;
  47. //net_graphpos "3" // default 1;
  48. //net_graphheight "60" // default 60; 740 is good value for 1024x768
  49. //net_graphproportionalfont "0" // default 1;
  50. //budget_show_history "0" // default 1; Disables history graph
  51. // Player Model Tweaks
  52. //
  53. r_eyemove "0" // default 1; Disables realistic eyeball movement
  54. r_eyesize "0" //
  55. r_eyeshift_z "0" //
  56. r_eyeshift_y "0" //
  57. r_eyeshift_x "0" //
  58. // Disable cheats (to disable you from taking advantage!)
  59. //
  60. //
  61. sv_cheats "0"
  62. // Done loading
  63. //
  64. clear
  65. clear
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement