Advertisement
wwww

CS:GO autoexec

Apr 10th, 2015
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.08 KB | None | 0 0
  1. // network
  2. rate 128000
  3. cl_cmdrate 128
  4. cl_updaterate 128
  5. cl_interp_ratio 1
  6. cl_interp 0
  7.  
  8. // binds
  9. bind "z" "slot8; grenademode_on" // smoke
  10. bind "x" "slot7; grenademode_on" // flash
  11. bind "c" "slot9; grenademode_on" // decoy
  12. bind "4" "slot_nade_molotov; grenademode_on" // toggle between nade & molotov
  13. bind "t" "toggle_lookatweapon"
  14. bind "f" "+lookatweapon"
  15. bind "1" "slot1; grenademode_off"
  16. bind "2" "slot2; grenademode_off"
  17. bind "3" "slot3; grenademode_off; toggle_lookatweapon"
  18. alias "+atk" "+attack"
  19. alias "-atk" "-attack; grenademode_off"
  20. bind "mouse1" "+atk"
  21. bind "mouse5" "toggle cl_righthand; r_cleardecals"
  22.  
  23. alias "+noclip" "noclip"
  24. alias "-noclip" "noclip"
  25. bind "v" "+noclip"
  26. alias +timetravel "host_timescale 50"
  27. alias -timetravel "host_timescale 1"
  28. bind "l" "+timetravel"
  29.  
  30. // lookatweapon toggle
  31. alias lookatweapon_on "+lookatweapon; alias toggle_lookatweapon lookatweapon_off"
  32. alias lookatweapon_off "-lookatweapon; alias toggle_lookatweapon lookatweapon_on"
  33. alias toggle_lookatweapon "lookatweapon_on"
  34.  
  35. // nade molotov toggle
  36. alias "slot_nade" "slot10; slot6; alias slot_nade_molotov slot_molotov;"
  37. alias "slot_molotov" "slot6; slot10; alias slot_nade_molotov slot_nade;"
  38. alias "slot_nade_molotov" "slot_nade"
  39.  
  40. // ninja & grenade mode
  41. alias "grenademode_on" "cl_crosshairsize 1024;"
  42. alias "grenademode_off" "cl_crosshairsize 2;"
  43. alias "ninjamode_on" "gameinstructor_enable 1; cl_radar_scale 1.0; grenademode_on; alias ninjamode ninjamode_off"
  44. alias "ninjamode_off" "gameinstructor_enable 0; cl_radar_scale 0.32; grenademode_off; alias ninjamode ninjamode_on"
  45. alias "ninjamode" "ninjamode_on"
  46.  
  47. // radar
  48. cl_radar_rotate 1
  49. cl_radar_always_centered 0
  50. cl_radar_scale 0.32
  51. cl_radar_icon_scale_min 0.5
  52.  
  53. // crosshair
  54. cl_crosshairusealpha 1
  55. cl_crosshairalpha 240
  56. cl_crosshaircolor 5
  57. cl_crosshaircolor_r 0
  58. cl_crosshaircolor_g 200
  59. cl_crosshaircolor_b 0
  60. cl_crosshairdot 0
  61. cl_crosshairgap 0
  62. cl_crosshairsize 2
  63. cl_crosshairstyle 4
  64. cl_crosshairusealpha 1
  65. cl_crosshairthickness 0.5
  66. cl_fixedcrosshairgap -2
  67. cl_crosshair_drawoutline 1
  68. cl_crosshair_outlinethickness 1
  69.  
  70. // +-------+-------+-------+-------+
  71. // | | | | |
  72. // | |molotov| decoy | voice |
  73. // | | | | |
  74. // +-------+-------+-------+-------+
  75. // | | | | |
  76. // | smoke | flash | he | |
  77. // | | | | demo |
  78. // +-------+-------+-------+ +
  79. // | | | | ui |
  80. // | p250 |tec9/cz| deag | |
  81. // | | | | |
  82. // +-------+-------+-------+-------+
  83. // | | | galil | |
  84. // | ak/m4 | awp | | |
  85. // | | | famas | ninja |
  86. // +-------+-------+-------+ |
  87. // | | | mode |
  88. // | kevlar/helm | kit | |
  89. // | | | |
  90. // +---------------+-------+-------+
  91.  
  92. // buy binds
  93. bind "KP_INS" "buy vesthelm; buy vest; slot3"
  94. bind "KP_DEL" "buy defuser; slot3"
  95. bind "KP_END" "buy m4a1; buy ak47; give weapon_ak47; slot3"
  96. bind "KP_DOWNARROW" "buy awp; give weapon_awp; slot3"
  97. bind "KP_PGDN" "buy famas; buy galilar; give weapon_galilar; slot3"
  98. bind "KP_LEFTARROW" "buy p250; give weapon_p250; slot3"
  99. bind "KP_5" "buy tec9; buy cz75; give weapon_tec9; slot3"
  100. bind "KP_RIGHTARROW" "buy deagle; give weapon_deagle; slot3"
  101. bind "KP_HOME" "buy smokegrenade; give weapon_smokegrenade; slot3"
  102. bind "KP_UPARROW" "buy flashbang; give weapon_flashbang; slot3"
  103. bind "KP_PGUP" "buy hegrenade; give weapon_hegrenade; slot3"
  104. bind "KP_SLASH" "buy molotov; buy incgrenade; give weapon_molotov; give weapon_incgrenade; slot3"
  105. bind "KP_MULTIPLY" "buy decoy; give weapon_decoy; slot3"
  106. alias "clutchmode_on" "voice_enable 0; say_team CLUTCH ENGAGED; alias clutchmode clutchmode_off"
  107. alias "clutchmode_off" "voice_enable 1; say_team CLUTCH OFF; alias clutchmode clutchmode_on"
  108. alias "clutchmode" "clutchmode_on"
  109. bind "KP_MINUS" "clutchmode"
  110. bind "KP_PLUS" "demoui"
  111. bind "KP_ENTER" "ninjamode"
  112.  
  113. // bunny hop
  114. bind mwheeldown "+jump"
  115. bind mwheelup "+jump"
  116.  
  117. bind "space" "+speed"
  118. bind "shift" "+duck"
  119.  
  120. // damage given
  121. developer 1
  122. con_filter_enable 2
  123. con_filter_text_out "Player:"
  124. con_filter_text "damage "
  125.  
  126. // stuff
  127. cl_disablehtmlmotd 0
  128. cl_disablefreezecam 1
  129. cl_showloadout 1
  130. cl_autowepswitch 0
  131. cl_freezecampanel_position_dynamic 0
  132. cl_righthand 1
  133. r_drawtracers_firstperson 0
  134.  
  135. // view model
  136. viewmodel_fov 68
  137. viewmodel_offset_x 2
  138. viewmodel_offset_y 2
  139. viewmodel_offset_z -2
  140. cl_viewmodel_shift_left_amt 0
  141. cl_viewmodel_shift_right_amt 0
  142. cl_bob_lower_amt 0
  143. cl_bobamt_lat 0
  144. cl_bobamt_vert 0
  145. cl_showloadout 1
  146. cl_bobcycle 1
  147. viewmodel_presetpos 0
  148.  
  149. // mouse
  150. m_rawinput 1
  151. m_mouseaccel1 0
  152. m_mouseaccel2 0
  153.  
  154. // hud
  155. hud_scaling 0.95
  156. hud_showtargetid 1
  157. safezonex 1
  158. safezoney 1
  159.  
  160. // netgraph
  161. net_graph 1
  162. bind "TAB" "+ng";
  163. alias "+ng" "+showscores; net_graphheight 0";
  164. alias "-ng" "-showscores; net_graphheight 9999";
  165.  
  166. // sound
  167. windows_speaker_config 1
  168. snd_mixahead 0.05
  169. snd_musicvolume 0
  170. snd_headphone_pan_exponent 2
  171. snd_headphone_pan_radial_weight 1
  172. snd_rear_headphone_position 90
  173.  
  174. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement