Advertisement
Guest User

autoexec

a guest
Aug 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. //Crosshair
  2. cl_crosshairstyle 4
  3. cl_crosshairsize 2
  4. cl_crosshairthickness 1
  5. cl_crosshairgap -2
  6. cl_crosshair_drawoutline 0
  7. cl_crosshair_outlinethickness 1
  8. cl_crosshairdot 0
  9. cl_crosshair_t 0
  10. cl_crosshaircolor 1
  11. cl_crosshaircolor_r 50
  12. cl_crosshaircolor_g 250
  13. cl_crosshaircolor_b 50
  14. cl_crosshairalpha 255
  15. alias +changec "+attack; cl_crosshaircolor red"
  16. alias -changec "-attack; cl_crosshaircolor 1"
  17. bind "mouse1" "+changec"
  18.  
  19. //Viewmodel
  20. cl_viewmodel_shift_left_amt "0.5"
  21. cl_viewmodel_shift_right_amt "0.25"
  22. viewmodel_fov "68"
  23. viewmodel_offset_x "2.5"
  24. viewmodel_offset_y "2.5"
  25. viewmodel_offset_z "-2.5"
  26. viewmodel_presetpos "0"
  27. viewmodel_recoil "1.0"
  28. cl_bob_lower_amt "5"
  29. cl_bobamt_lat "0.1"
  30. cl_bobamt_vert "0.1"
  31. cl_bobcycle "0.98"
  32.  
  33. //Fast Buy
  34. bind "kp_end" " buy hegrenade;"
  35. bind "kp_downarrow" " buy flashbang; buy flashbang;"
  36. bind "kp_pgdn" " buy smokegrenade;"
  37. bind "kp_leftarrow" " buy molotov; buy incgrenade; buy incgrenade; buy molotov;"
  38. bind "kp_5" "buy galilar; buy famas;"
  39. bind "kp_rightarrow" "buy ak47; buy m4a1;"
  40. bind "kp_home" "buy ssg08;"
  41. bind "kp_uparrow" "buy awp;"
  42. bind "kp_pgup" "buy p250;"
  43. bind "kp_minus" " buy decoy;"
  44. bind "leftarrow" " buy vest;"
  45. bind "uparrow" " buy defuser;"
  46. bind "downarrow" "buy tec9; buy fiveseven;"
  47. bind "rightarrow" " buy vesthelm; buy vest;"
  48.  
  49. //HUD
  50. cl_hud_background_alpha 1
  51. cl_hud_bomb_under_radar 0
  52. cl_hud_color 5
  53. cl_hud_healthammo_style 1
  54. cl_hud_playercount_pos 0
  55. cl_hud_playercount_showcount 1
  56. cl_hud_radar_scale 1
  57. cl_radar_always_centered 0
  58. cl_radar_scale 0.44
  59. cl_loadout_colorweaponnames 1
  60.  
  61. //Scoreboard FPS
  62. net_graph "1"
  63. net_graphheight "9999"
  64. alias "+scorenet" "+showscores; net_graphheight 0"
  65. alias "-scorenet" "-showscores; net_graphheight 9999"
  66. bind "TAB" "+scorenet"
  67.  
  68. //Team WH
  69. bind F11 toggleTwh;
  70. alias toggleTwh "enableTwh";
  71. alias enableTwh "alias toggleTwh disableTwh; +cl_show_team_equipment";
  72. alias disableTwh "alias toggleTwh enableTwh; -cl_show_team_equipment";
  73.  
  74. //JumpThrow
  75. alias +jumpthrow "+jump;-attack"
  76. alias -jumpthrow "-jump"
  77. bind v +jumpthrow
  78.  
  79. //RightHand
  80. bind "," "cl_righthand 0"
  81. bind "." "cl_righthand 1"
  82.  
  83. //VoiceMute Script
  84. alias stfu stfu1
  85. alias stfu1 "voice_enable 0; chat_enable 0; echo Voice OFF; playvol buttons\blip2 0.5; alias stfu stfu2"
  86. alias stfu2 "voice_enable 1; chat_enable 1; echo Voice ON; playvol buttons\blip1 0.5; alias stfu stfu1"
  87. bind "ALT" "stfu"
  88.  
  89. //Bomb Drop
  90. bind "n" "use weapon_c4;drop"
  91.  
  92. //Smoke Cross
  93. bind "h" "+crosshairmax"
  94. alias "+crosshairmax" "cl_crosshairsize 5000; cl_crosshairgap -10; cl_crosshairthickness 0.5; cl_crosshair_drawoutline 0"
  95. alias "-crosshairmax" "cl_crosshairstyle 4; cl_crosshairsize 2; cl_crosshairthickness 1; cl_crosshairgap -2; cl_crosshair_drawoutline 0; cl_crosshair_outlinethickness 1; cl_crosshairdot 0; cl_crosshair_t 0; cl_crosshaircolor 1; cl_crosshaircolor_r 50; cl_crosshaircolor_g 250; cl_crosshaircolor_b 50; cl_crosshairalpha 255"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement