Advertisement
Guest User

Untitled

a guest
Mar 9th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.67 KB | None | 0 0
  1. developer 1
  2. echo "default settings loaded"
  3. developer 0
  4.  
  5. // viewmodel/combination script binds
  6. bind "0" "slot10"
  7. bind "1" "slot1"
  8. bind "2" "slot2"
  9. bind "3" "slot3"
  10. bind "4" "slot4"
  11. bind "q" "lastinv"
  12.  
  13. bind "mouse1" "+attack"
  14. bind "mouse2" "+attack2"
  15.  
  16.  
  17. // crosshair script binds
  18. bind "a" "+moveleft"
  19. bind "d" "+moveright"
  20. bind "s" "+back"
  21. bind "w" "+forward"
  22. bind "SPACE" "+jump"
  23.  
  24.  
  25.  
  26. // ---------------------------------------------------------------------------------------------------------------------------------
  27. // Chris' competitive medic config, requires at least a four button mouse with a scroll wheel
  28. // v1.052 | 07 June 2010
  29. // ---------------------------------------------------------------------------------------------------------------------------------
  30. // Problems or questions? Message me at http://steamcommunity.com/profiles/76561197995375493
  31. // ---------------------------------------------------------------------------------------------------------------------------------
  32. // PUT YOUR AUTOCALL PERCENTAGE INSTEAD OF 50 THE BIT MARKED "Initial autocall percentage"
  33. // ---------------------------------------------------------------------------------------------------------------------------------
  34. // Binds:
  35. // F1 = Tap twice to move to new spawn room
  36. // F2 = Have all teammates nearby show their location
  37. // M1 = Medigun/kritzkrieg
  38. // M2 = Syringe gun/blutsauger, when getting out will make all teammates call out
  39. // M3 = Bonesaw/ubersaw
  40. // M4 = Uber, will switch to medigun automatically, will drops any intelligence being carried, and will also mask the "go go go" voice command
  41. // Mouse wheel = Scroll up for syringe gun, down for medigun
  42. // C = Vocalise fake ubercharge to enemy team
  43. //
  44. // Shift commands:
  45. // SHIFT + C = Mask "I am fully charged" or other calls
  46. // SHIFT + O = Kill self (to move place in spawn etc)
  47. // ---------------------------------------------------------------------------------------------------------------------------------
  48. // If you want to automatically undo this when changing to another class, put this in the config for that class (obviously uncomment it first)
  49. // You might want to put it in your autoexec as well, because binds are retained between sessions
  50. //
  51. // alias "resetmedcfg" "unbind "shift"; bind "mouse1" "+attack";bind "mouse2" "+attack2";bind "mwheelup" "invprev";bind "mwheeldown" "invnext";unbind "mouse3";unbind "mouse4";bind "C" "voice_menu_3";-reload;-forward;echo "*** MEDIC CONFIG UNLOADED ***""
  52. // resetmedcfg
  53. //
  54. // OR
  55. //
  56. // bind a key to it in your autoexec only like:
  57. //
  58. // alias "resetmedcfg" "unbind "shift"; bind "mouse1" "+attack";bind "mouse2" "+attack2";bind "mwheelup" "invprev";bind "mwheeldown" "invnext";unbind "mouse3";unbind "mouse4";bind "C" "voice_menu_3";-reload;-forward;echo "*** MEDIC CONFIG UNLOADED ***""
  59. // bind "p" "resetmedcfg"
  60. // resetmedcfg
  61. // ---------------------------------------------------------------------------------------------------------------------------------
  62. // CONFIG BEGINS
  63. // ---------------------------------------------------------------------------------------------------------------------------------
  64.  
  65. // Auto call changer
  66. alias "autocall_initial" "hud_medicautocallersthreshold "50"" // Initial autocall percentage
  67. alias "autocall_temp" "hud_medicautocallersthreshold "150"" // Autocall percentage when getting out blutsauger/syringe
  68. alias "+autocall_temp_hit" "autocall_temp"
  69. alias "-autocall_temp_hit" "autocall_initial"
  70.  
  71.  
  72.  
  73. // Uber and notification
  74. alias "+uber" "slot2;dropitem;+attack2;say_team "*** KRITZ OR UBER USED ***";voicemenu 0 0;autocall_initial"
  75. alias "-uber" "-attack2;"
  76.  
  77. // Fake uber and notification
  78. alias "fakeuber" "voicemenu 1 7;say_team "*** KRITZ OR UBER FAKED ***""
  79.  
  80. // Mask calls
  81. alias "maskuber" "voicemenu 0 0;say_team "*** MASKED UBER CALL ***""
  82.  
  83. // Spawn move
  84. alias "forwardspawn_random" "join_class "random"; alias "forwardspawn_toggle" "forwardspawn_medic""
  85. alias "forwardspawn_medic" "join_class "medic"; alias "forwardspawn_toggle" "forwardspawn_random";say_team "*** MOVED SPAWN ***""
  86. alias "forwardspawn_toggle" "forwardspawn_random"
  87.  
  88. // Shift mask
  89. alias "+shiftmask" "bind "C" "maskuber";bind "o" "kill""
  90. alias "-shiftmask" "bind "C" "fakeuber";unbind "o""
  91.  
  92. // Rebind aliases
  93. alias "slot1bind" "slot1;autocall_temp"
  94. alias "slot2bind" "slot2;autocall_initial"
  95.  
  96. // Bind
  97. bind "c" "fakeuber"
  98.  
  99. bind "f1" "forwardspawn_toggle"
  100. bind "f2" "+autocall_temp_hit"
  101. bind "shift" "+shiftmask"
  102.  
  103. // Print to console
  104. echo "*** CHRIS' COMPETITIVE MEDIC CONFIG LOADED ***"
  105.  
  106. bind mouse2 +uberpop
  107.  
  108. alias +uberpop "say *** CHARGE USED ***; +attack2"
  109.  
  110. alias -uberpop "-attack2"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement