Advertisement
Guest User

Untitled

a guest
May 25th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. // Jump Smoke
  2. alias "+jumpthrow" "+jump;-attack"
  3. alias "-jumpthrow" "-jump"
  4. bind "h" "+jumpthrow"
  5.  
  6. // Crosshair
  7. cl_crosshairalpha "255"
  8. cl_crosshaircolor "5"
  9. cl_crosshaircolor_b "0"
  10. cl_crosshaircolor_r "255"
  11. cl_crosshaircolor_g "0"
  12. cl_crosshairdot "1"
  13. cl_crosshairgap "2"
  14. cl_crosshairsize "5"
  15. cl_crosshairstyle "4"
  16. cl_crosshairusealpha "1"
  17. cl_crosshairthickness "0.5"
  18. cl_fixedcrosshairgap "0"
  19. cl_crosshair_outlinethickness "1"
  20. cl_crosshair_drawoutline "1"
  21.  
  22. // Disable HTML MOTDs
  23. cl_disablehtmlmotd 0
  24.  
  25. // Show FPS and network data when showing scoreboard
  26. bind "TAB" "+ng";
  27. alias "+ng" "+showscores; net_graph 1";
  28. alias "-ng" "-showscores; net_graph 0";
  29.  
  30. // Max Matchmaking Ping
  31. mm_dedicated_search_maxping "75"
  32.  
  33. // Viewmodel
  34. viewmodel_fov "62.5"
  35. viewmodel_offset_x "2"
  36. viewmodel_offset_y "2"
  37. viewmodel_offset_z "-2"
  38.  
  39. // Bobbing and movement shifting
  40. cl_viewmodel_shift_left_amt "0"
  41. cl_viewmodel_shift_right_amt "0"
  42. cl_bob_lower_amt "0"
  43. cl_bobamt_lat "0"
  44. cl_bobamt_vert "0"
  45. cl_bobcycle "2"
  46.  
  47. // Rates and Interpolation
  48. cl_cmdrate "128"
  49. cl_updaterate "128"
  50. cl_interp "0"
  51. cl_interp_ratio "1"
  52. rate "128000"
  53.  
  54. // Mouse commands
  55. m_rawinput "1"
  56. m_mouseaccel1 "0"
  57. m_mouseaccel2 "0"
  58. sensitivity "2.5"
  59.  
  60. // Miscellaneous
  61. cl_autowepswitch "0"
  62. cl_disablefreezecam “1”
  63. cl_autohelp "0"
  64. cl_showhelp "0"
  65. cl_righthand "1"
  66. cl_forcepreload "1"
  67. hud_showtargetid "1"
  68. fps_max "350"
  69. cl_cmm_showteamplayercolors "1"
  70.  
  71. // Bunnyhop Bind
  72. alias bhop_on "bind MWHEELUP +jump;bind MWHEELDOWN +jump"
  73. alias bhop_off "bind MWHEELUP invprev;bind MWHEELDOWN invnext"
  74. bind semicolon bhop_on
  75. bind ' bhop_off
  76.  
  77. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement