Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. // Additional configs
  2. alias prac exec "practicecfg"
  3.  
  4. // Say bindings
  5. bind f5 "say Hello World!"
  6.  
  7. // Jumping steep crouch-jumps more reliably and faster
  8. alias +cjump "+jump; +duck"
  9. alias -cjump "-jump; -duck"
  10. bind c +cjump
  11.  
  12. // Quickly zoom your radar in/out
  13. bind KP_plus "incrementvar cl_radar_scale 0.25 1.0 0.05"
  14. bind KP_minus "incrementvar cl_radar_scale 0.25 1.0 -0.05"
  15.  
  16. // Quickly increase/decrease in-game volume
  17. alias "vgmin" "volume 0;echo |*__________| VOLUME 0% MINIMUM;alias vgup vg1;alias vgdn vgmin"
  18. alias "vg1" "volume 0.1;echo |_*_________| VOLUME 10%;alias vgup vg2;alias vgdn vgmin"
  19. alias "vg2" "volume 0.2;echo |__*________| VOLUME 20%;alias vgup vg4;alias vgdn vg1"
  20. alias "vg4" "volume 0.4;echo |___*_______| VOLUME 40%;alias vgup vg6;alias vgdn vg2"
  21. alias "vg6" "volume 0.6;echo |_____*_____| VOLUME 60%;alias vgup vg7;alias vgdn vg4"
  22. alias "vg7" "volume 0.7;echo |_______*___| VOLUME 70%;alias vgup vg8;alias vgdn vg6"
  23. alias "vg8" "volume 0.8;echo |_________*_| VOLUME 80%;alias vgup vg9;alias vgdn vg7"
  24. alias "vg9" "volume 0.9;echo |__________*| VOLUME 90%;alias vgup vg10;alias vgdn vg8"
  25. alias "vg10" "volume 1;echo |__________X| VOLUME 100% MAXIMUM;alias vgup vg2;alias vgdn vg9"
  26. alias "vgup" "vg1"
  27. alias "vgdn" "vg1"
  28. alias vol volume
  29. bind f3 vgdn
  30. bind f4 vgup
  31.  
  32. // Mute all in-game music except for the 10 second bomb warning
  33. snd_musicvolume 0.5
  34. snd_deathcamera_volume 0
  35. snd_mapobjective_volume 0 // The bomb music played prior to the ten-second warning
  36. snd_menumusic_volume 0
  37. snd_roundend_volume 0
  38. snd_roundstart_volume 0
  39. snd_tensecondwarning_volume 1 // The ten-second warning
  40. snd_mute_losefocus 0 // This will allow game noise to play even though you've alt-tabbed out
  41.  
  42. // Show net_graph only when you have your scoreboard open
  43. net_graph "1"
  44. net_graphheight "9999"
  45. alias "+scorenet" "+showscores; net_graphheight 0"
  46. alias "-scorenet" "-showscores; net_graphheight 9999"
  47. bind "TAB" "+scorenet"
  48.  
  49. // Jumpthrow bind
  50. alias "+jumpthrow" "+jump;-attack;-attack2"
  51. alias "-jumpthrow" "-jump"
  52. bind "i" "+jumpthrow"
  53.  
  54. // Crosshair bind to easily line up your grenades
  55. //bind "capslock" "+crosshairmax"
  56. //alias "+crosshairmax" "cl_crosshairsize 5000; cl_crosshairgap -10; cl_crosshairthickness 0.5; cl_crosshair_drawoutline 0"
  57. //alias "-crosshairmax" "cl_crosshairsize 3; cl_crosshairgap -1; cl_crosshairthickness 0; cl_crosshair_drawoutline 0"
  58. bind capslock "toggle cl_crosshairsize 3 500"
  59.  
  60. // Clutch script
  61. alias "clutch" "clutchon"
  62. alias "clutchon" "voice_enable 0; gameinstructor_enable 1; cl_clearhinthistory; r_cleardecals; playvol buttons\blip2 0.5; alias clutch clutchoff; say_team Voice Disabled, I can't hear anyone now."
  63. alias "clutchoff" "voice_enable 1; gameinstructor_enable 0; playvol buttons\blip1 0.5; alias clutch clutchon; say_team Voice Enabled, I can hear you now."
  64. bind n clutch
  65.  
  66. // See the damage done during the round without opening console
  67. //alias displaydamage "displaydamage_on"
  68. //alias displaydamage_on "con_filter_text Damage Given To; con_filter_text_out Player:; con_filter_enable 2; developer 1; playvol buttons\blip1 0.5; alias displaydamage "displaydamage_off""
  69. //alias displaydamage_off "con_filter_enable 0; developer 0; playvol buttons\blip2 0.5; alias displaydamage "displaydamage_on""
  70. //bind "f5" "displaydamage"
  71.  
  72. // Buy and instantly drop a five-seven/tec 9
  73. alias buydrop "buy fn57; buy tec9; slot2; drop"
  74. bind p buydrop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement