Advertisement
Guest User

binds for all classes

a guest
Nov 20th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. //BINDS
  2.  
  3. bind "mouse1" "+attack"
  4. bind "mouse2" "+attack2"
  5. bind "mwheelup" "mate_slot1"
  6. bind "mwheeldown" "mate_slot3"
  7. bind "6" "mate_slot0"
  8. bind "7" "mate_slot1"
  9. bind "8" "mate_slot2"
  10. bind "9" "mate_slot3"
  11. bind "0" "mate_slot4"
  12. bind "p" "mate_slot5"
  13. bind "u" "mate_lastinv"
  14. bind "o" "mate_call_medic"
  15. bind "t" "say_team"
  16. bind "f" "say"
  17. bind "g" "mate_spray"
  18. bind "รค" "taunt"
  19. bind "m" "voice_menu_1"
  20. bind "," "voice_menu_2"
  21. bind "." "voice_menu_3"
  22. bind "z" "mate_toggle_minmode"
  23. bind "x" "changeclass"
  24. bind "c" "changeteam"
  25. bind "KP_MULTIPLY" "toggleconsole"
  26. bind "-" "mate_toggle_netgraph"
  27. bind "v" "open_charinfo"
  28. bind "h" "+quickswitchmenu"
  29. bind "alt" "+jump"
  30. bind "F8" "+jump"
  31. bind "n" "+duck"
  32. bind "y" "+mate_scores"
  33. bind "escape" "cancelselect"
  34. bind "rshift" "+mate_joinclass"
  35. bind "u" "lastdisguise"
  36. bind "enter" "prec_mark"
  37. unbind "mouse5"
  38. unbind "mouse4"
  39.  
  40. viewmodel_fov 95
  41.  
  42. // color toggler
  43. alias dotxhaircolor "dotxhaircolorb"
  44. alias dotxhaircolorb "cl_crosshair_blue 0; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhaircolor dotxhaircolorc"
  45. alias dotxhaircolorc "cl_crosshair_blue 255; cl_crosshair_green 0; cl_crosshair_red 255;alias dotxhaircolor dotxhaircolord"
  46. alias dotxhaircolord "cl_crosshair_blue 240; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhaircolor dotxhaircolorb"
  47.  
  48. // Null-cancelling movement script
  49. // (prevents you from pressing two opposing directions, which causes you to stop moving)
  50.  
  51. bind i +mfwd
  52. bind k +mback
  53. bind j +mleft
  54. bind l +mright
  55.  
  56. alias +mfwd "-back;+forward;alias checkfwd +forward;dotxhaircolor"
  57. alias +mback "-forward;+back;alias checkback +back;dotxhaircolor"
  58. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft;dotxhaircolor"
  59. alias +mright "-moveleft;+moveright;alias checkright +moveright;dotxhaircolor"
  60. alias -mfwd "-forward;checkback;alias checkfwd none;dotxhaircolor"
  61. alias -mback "-back;checkfwd;alias checkback none;dotxhaircolor"
  62. alias -mleft "-moveleft;checkright;alias checkleft none;dotxhaircolor"
  63. alias -mright "-moveright;checkleft;alias checkright none;dotxhaircolor"
  64. alias checkfwd none
  65. alias checkback none
  66. alias checkleft none
  67. alias checkright none
  68. alias none ""
  69.  
  70. //Improved Crouch Jump Script
  71. //By: Chdata
  72. //Thanks to Stabby Stabby
  73. alias +rj "spec_mode;-duck;+cr;alias checkrj +cr"
  74. alias -rj "-cr;checkduck;alias checkrj none"
  75. alias +crouch "-cr;+duck;alias checkduck +duck"
  76. alias -crouch "-duck;checkrj;alias checkduck none"
  77. alias checkduck none
  78. alias checkrj none
  79. alias +cr "+jump;+duck"
  80. alias -cr "-duck;-jump"
  81. alias none ""
  82. bind space +rj
  83. bind alt +rj
  84. bind b +crouch
  85.  
  86. alias +crouchjump "+jump; +duck"
  87. alias -crouchjump "-duck; -jump"
  88. bind "ctrl" "+crouchjump"
  89. bind "space" "+crouchjump"
  90.  
  91. //xhair TYPE toggle--switches crosshair type when shooting; good for preventing Amby xhair from expanding too large (uses my settings as an example). NOTE: Must be manually integrated with viewmodel scripts to work in conjunction.
  92. //----------------------------------------------
  93. alias dotxhairtype "dotxhairtypeb"
  94. alias dotxhairtypeb "cl_crosshair_file crosshair2;cl_crosshair_scale 20;alias dotxhairtype dotxhairtyper" // tweak crosshair_scale values to your liking
  95. alias dotxhairtyper "cl_crosshair_file crosshair5;cl_crosshair_scale 21;alias dotxhairtype dotxhairtypeb"
  96.  
  97. alias +crosshairfire "+attack;dotxhairtype;spec_next"
  98. alias -crosshairfire "-attack;dotxhairtype"
  99.  
  100. hud_combattext_batching_window 2
  101. //=============
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement