Advertisement
matutEv

autoexec.cfg

May 29th, 2021
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. clear
  2.  
  3. // Sensitivity.
  4.  
  5. sensitivity 1
  6.  
  7. echo "sensitivity loaded"
  8.  
  9. // Viewmodel
  10.  
  11. viewmodel_fov "68"
  12. viewmodel_offset_x 2.5
  13. viewmodel_offset_y 2
  14. viewmodel_offset_z -2
  15. cl_viewmodel_shift_left_amt "0"
  16. cl_viewmodel_shift_right_amt "0"
  17. cl_bobcycle "0.98"
  18. cl_bob_lower_amt "0"
  19. cl_bobamt_lat "0"
  20. cl_bobamt_vert "0"
  21.  
  22. echo "viewmodel loaded"
  23.  
  24. // Damage given
  25.  
  26. developer 1
  27. con_filter_enable 2
  28. con_filter_text_out "Player:"
  29. con_filter_text "damage Given"
  30.  
  31. echo "damage given loaded"
  32.  
  33. // Netgraph on Tab
  34.  
  35. alias +netg "net_graphheight 0;+showscores"
  36. alias -netg "net_graphheight 9999;-showscores"
  37. bind TAB "+netg"
  38.  
  39. echo "netgraph loaded"
  40.  
  41. // FPS
  42.  
  43. fps_max "0"
  44. r_drawtracers_firstperson "0"
  45. r_dynamic "0"
  46. r_eyegloss "0"
  47. r_eyemove "0"
  48. r_eyegloss "0"
  49. r_eyemove "0"
  50. r_eyeshift_x "0"
  51. r_eyeshift_y "0"
  52. r_eyeshift_z "0"
  53. r_eyesize "0"
  54.  
  55. echo "fps loaded"
  56.  
  57. // Net settings
  58.  
  59. cl_updaterate "128"
  60. cl_cmdrate "128"
  61. cl_interp_ratio "1"
  62. cl_interp "0"
  63. rate "128000"
  64.  
  65. echo "net settings loaded"
  66.  
  67. // Bomb Drom
  68.  
  69. bind "n" "use weapon_knife; use weapon_c4; drop"
  70.  
  71. // Jump Throw
  72.  
  73. alias "+jumpthrow" "+jump;-attack"
  74. alias "-jumpthrow" "-jump"
  75. unbind x
  76. bind x "+jumpthrow"
  77.  
  78. // Cleardecals
  79.  
  80. bind q r_cleardecals
  81.  
  82. // Righthand
  83.  
  84. bind c "toggle cl_righthand 1 0"
  85.  
  86. // annoying things
  87.  
  88. cl_autowepswitch "0"
  89. cl_autohelp "0"
  90. cl_disablehtmlmotd "1"
  91. cl_showhelp "0"
  92. cl_forcepreload "1"
  93. cl_show_clan_in_death_notice "0"
  94. cl_showfps "0"
  95. cl_showloadout "1"
  96. gameinstructor_enable "0"
  97. mm_dedicated_search_maxping "350"
  98. hud_showtargetid "1"
  99. r_drawtracers_firstperson "1"
  100. cl_disablefreezecam "1"
  101.  
  102. echo "annoying things loaded
  103.  
  104. // ping player
  105.  
  106. bind "`" "player_ping"
  107.  
  108. echo "ping player loaded"
  109.  
  110. // jump crouch bind
  111.  
  112. unbind mouse3
  113. alias +LJ "-forward;+duck; +jump; +klook"
  114. alias -LJ "-duck; -jump; -klook"
  115. bind mouse3 +LJ
  116. bind ctrl +duck
  117.  
  118. echo "jump crouch loaded"
  119.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement