Advertisement
BaapJaan

Testing New CFG

Oct 10th, 2019
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. // =============== Initial ===============
  2. developer "1"
  3. rate "500000" // 4 MBPS
  4. cl_updaterate "128"
  5. cl_cmdrate "128"
  6.  
  7. // =============== Damage given ===============
  8. con_enable "1"
  9. con_filter_text "Damage Given"
  10. con_filter_text_out "Player:"
  11. con_filter_enable "2"
  12.  
  13. // =============== Audio ===============
  14.  
  15. volume "0.15"
  16. voice_enable "1"
  17. voice_scale "0.19" // receive volume
  18. voice_mixer_volume "1" // mic volume
  19. windows_speaker_config "1" // headphone audio output
  20. snd_use_hrtf "1"
  21. snd_mix_async "1"
  22. snd_mixahead "0.02" // sound delay
  23. snd_pitchquality "1"
  24. snd_ducking_off "1"
  25. snd_front_headphone_position "90"
  26. snd_rear_headphone_position "90"
  27. snd_headphone_pan_exponent "1.2"
  28. snd_headphone_pan_radial_weight "1"
  29. snd_mute_losefocus "1" // mute game when alt-tabbed
  30. dsp_enhance_stereo "0"
  31. lobby_voice_chat_enabled "0" // voice chat in lobby
  32. cl_mute_all_but_friends_and_party "0"
  33. snd_async_flush
  34. snd_musicvolume "0"
  35. snd_menumusic_volume "0"
  36. snd_roundstart_volume "0"
  37. snd_roundend_volume "0"
  38. snd_mapobjective_volume "0"
  39. snd_tensecondwarning_volume "0.5"
  40. snd_deathcamera_volume "0"
  41.  
  42. // =============== write dc disconnect ===============
  43.  
  44. alias "dc" "disconnect"
  45. alias "gg" "quit"
  46.  
  47. bind j "+jump;-attack;-jump"
  48.  
  49. // ================== Right/Left Arm ==================
  50.  
  51. bind "kp_downarrow" "cl_righthand 1"
  52. bind "kp_end" "cl_righthand 0"
  53.  
  54. // ================== Jump and Crouch ===================
  55.  
  56. unbind "space"
  57. bind "space" "+djump"
  58. alias "+djump" "+jump ; +duck"
  59. alias "-djump" "-jump ; -duck"
  60. bind "mwheelup" +jump
  61. bind "mwheeldown" +jump
  62.  
  63.  
  64. host_writeconfig
  65. clear
  66. echo "Zer0-1ne's CFG Loaded"
  67. echo "Get Ready To Lose"
  68. // ================== Good Luck ===================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement