Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. // GAME //
  2. gameinstructor_enable 0
  3. cl_disablehtmlmotd -1
  4. cl_autowepswitch 0
  5. closeonbuy 0
  6.  
  7. cl_bobcycle 0.98 // 0.98 is enforced by ESEA/ESL
  8. cl_bob_lower_amt 5
  9. cl_bobamt_lat 0.1
  10. cl_bobamt_vert 0.1
  11. cl_viewmodel_shift_left_amt 0.5
  12. cl_viewmodel_shift_right_amt 0.5
  13.  
  14. // NETWORK //
  15. rate 786432
  16. cl_cmdrate 128
  17. cl_updaterate 128
  18. cl_interp 0
  19. cl_interp_ratio 1
  20.  
  21. cl_interpolate 1
  22. cl_lagcompensation 1
  23. cl_timeout 500
  24. cl_downloadfilter nosounds
  25. mm_dedicated_search_maxping 50
  26.  
  27. // AUDIO //
  28. snd_musicvolume 0.5
  29. snd_deathcamera_volume 0
  30. snd_mapobjective_volume 0
  31. snd_menumusic_volume 0.2
  32. snd_roundend_volume 0
  33. snd_roundstart_volume 0
  34. snd_tensecondwarning_volume 1
  35. snd_mute_losefocus 1
  36. snd_mix_async 1
  37. snd_mixahead 0.02
  38. snd_stream 1
  39.  
  40. windows_speaker_config 1
  41. snd_front_headphone_position 90.0
  42. snd_rear_headphone_position 90.0
  43. snd_headphone_pan_exponent 1.0
  44. snd_headphone_pan_radial_weight 0
  45. snd_use_hrtf 1
  46. snd_occlusion 1
  47. voice_scale 1
  48.  
  49. // VIDEO //
  50. player_nevershow_communityservermessage 1
  51. hud_showtargetid 1
  52. cl_showloadout 1
  53. cl_show_clan_in_death_notice 0
  54.  
  55. cl_radar_always_centered 0
  56. cl_radar_icon_scale_min 0.700000
  57. cl_radar_rotate 1
  58. cl_radar_scale 0.450000
  59. cl_radar_square_with_scoreboard 1
  60. cl_hud_bomb_under_radar 0
  61. cl_hud_color 2
  62. cl_hud_background_alpha 0.5
  63. cl_hud_healthammo_style 1
  64. cl_hud_playercount_pos 0
  65. cl_hud_playercount_showcount 0
  66. cl_hud_radar_scale 1.150000
  67. hud_scaling 0.850000
  68.  
  69. fps_max 999
  70. r_dynamic 0
  71. r_eyegloss 0
  72. r_eyemove 0
  73. r_eyeshift_x 0
  74. r_eyeshift_y 0
  75. r_eyeshift_z 0
  76. r_eyesize 0
  77. mat_queue_mode 2
  78. func_break_max_pieces 0
  79.  
  80. cl_crosshairthickness 0, 1.5, 3
  81. zoom_sensitivity_ratio_mouse 0.818933027098955175
  82.  
  83. net_graph 1
  84. net_graphheight 9999
  85. alias "+scorenet" "+showscores; net_graphheight 0"
  86. alias "-scorenet" "-showscores; net_graphheight 9999"
  87. bind "TAB" "+scorenet"
  88.  
  89.  
  90. // VIEWMODEL //
  91. cl_disablefreezecam 1
  92. cl_spec_mode 4
  93. cl_bob_lower_amt 0
  94. cl_bobamt_lat 0
  95. cl_bobamt_vert 0
  96. cl_viewmodel_shift_left_amt 0
  97. cl_viewmodel_shift_right_amt 0
  98.  
  99. // MISC //
  100. cl_forcepreload 1
  101. engine_no_focus_sleep 0
  102. cl_join_advertise 2
  103. bind "H" "toggle gameinstructor_enable"
  104. sv_forcepreload 1
  105. ui_steam_overlay_notification_position "topright"
  106.  
  107. bind "F" "+lookatweapon; r_cleardecals"
  108. con_filter_enable 1; con_filter_text_out "session"
  109.  
  110. bind "V" "+voicerecord"
  111.  
  112. cl_teamid_overhead_always 1
  113. //alias "+customuse" "+use;+cl_show_team_equipment;"
  114. //alias "-customuse" "-use;-cl_show_team_equipment;"
  115. //bind "e" "+customuse"
  116.  
  117.  
  118. // MOUSE //
  119. m_rawinput 1
  120. m_customaccel 0
  121. m_customaccel_scale 0
  122. m_mousespeed 0
  123. m_mouseaccel1 0
  124. m_mouseaccel2 0
  125. m_yaw 0.022
  126.  
  127. // Mutes people //
  128. bind f9 toggleVoice;
  129. alias toggleVoice "disableVoice";
  130. alias disableVoice "alias toggleVoice enableVoice; voice_enable 0; say_team Silent mode ON";
  131. alias enableVoice "alias toggleVoice disableVoice; voice_enable 1; say_team Silent mode OFF";
  132.  
  133. // Radar zoom in-out script //
  134. bind "KP_plus" "incrementvar cl_radar_scale 0.25 1.0 0.05";
  135. bind "KP_minus" "incrementvar cl_radar_scale 0.25 1.0 -0.05";
  136.  
  137. echo "********************************"
  138. echo "AUTOEXEC LOADED SUCCESSFULLY"
  139. echo "********************************"
  140.  
  141. host_writeconfig
  142.  
  143. echo "********************************"
  144. echo "CONFIG WRITTEN SUCCESSFULLY"
  145. echo "********************************"
  146.  
  147. //Launch Options
  148. //-exec autoexec.cfg -novid -tickrate 128 -high
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement