Advertisement
Guest User

Chris' medic cfg, edited

a guest
Jan 12th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. // Chris' competitive medic config, requires at least a four button mouse with a scroll wheel
  2. // v1.052 | 07 June 2010 - Edited by /u/genemilder
  3.  
  4. // Binds:
  5. // F1 = Tap twice to move to new spawn room
  6. // F2 = Have all teammates nearby show their location
  7. // M1 = Medigun/kritzkrieg
  8. // M2 = Syringe gun/blutsauger, when getting out will make all teammates call out
  9. // M3 = Bonesaw/ubersaw
  10. // M4 = Uber, will switch to medigun automatically, will drops any intelligence being carried, and will also mask the "go go go" voice command
  11. // Mouse wheel = Scroll up for syringe gun, down for medigun
  12. // C = Vocalise fake ubercharge to enemy team
  13. // SHIFT + C = Mask "I am fully charged" or other calls
  14. // SHIFT + O = Kill self (to move place in spawn etc)
  15.  
  16.  
  17. // If you want to automatically undo this when changing to another class, put this in the config for that class (obviously uncomment it first)
  18. // You might want to put it in your autoexec as well, because binds are retained between sessions
  19.  
  20. // 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 ***"
  21. // resetmedcfg
  22.  
  23.  
  24. // CONFIG BEGINS
  25.  
  26. // Bind
  27. bind f1 forwardspawn_toggle
  28. bind f2 +autocall_temp_hit
  29. bind mouse1 +heal
  30. bind mouse2 +needles
  31. bind mouse3 +saw
  32. bind mouse4 +uber
  33. bind mwheelup slot1bind
  34. bind mwheeldown slot2bind
  35. bind shift +shiftmask
  36. bind c uberswitch
  37. bind o killswitch
  38.  
  39. alias +needles "slot1; +attack; -reload; autocall_temp"
  40. alias -needles "-attack; +reload"
  41. alias +heal "slot2; +attack; autocall_initial"
  42. alias -heal "-attack"
  43. alias +saw "slot3; +attack; autocall_temp"
  44. alias -saw "-attack"
  45. alias +uber "slot2; dropitem; +attack2; say_team *** KRITZ OR UBER USED ***; voicemenu 0 0; autocall_initial"
  46. alias -uber "-attack2"
  47.  
  48. alias slot1bind "slot1; autocall_temp"
  49. alias slot2bind "slot2; autocall_initial"
  50.  
  51.  
  52. // Shift mask
  53. alias +shiftmask "alias uberswitch maskuber; alias killswitch kill"
  54. alias -shiftmask "alias uberswitch fakeuber; alias killswitch "
  55.  
  56. alias fakeuber "voicemenu 1 7; say_team *** KRITZ OR UBER FAKED ***" // Fake uber and notification
  57. alias maskuber "voicemenu 0 0; say_team *** MASKED UBER CALL ***" // Mask calls
  58.  
  59. -shiftmask
  60.  
  61.  
  62. // Auto call changer
  63. alias autocall_initial "hud_medicautocallersthreshold 50" // Initial autocall percentage
  64. alias autocall_temp "hud_medicautocallersthreshold 150" // Autocall percentage when getting out blutsauger/syringe
  65. alias +autocall_temp_hit autocall_temp
  66. alias -autocall_temp_hit autocall_initial
  67.  
  68.  
  69. // Spawn move
  70. alias forwardspawn_random "join_class random; alias forwardspawn_toggle forwardspawn_medic"
  71. alias forwardspawn_medic "join_class medic; alias forwardspawn_toggle forwardspawn_random; say_team *** MOVED SPAWN ***"
  72. alias forwardspawn_toggle forwardspawn_random
  73.  
  74.  
  75. // Print to console
  76. echo "*** CHRIS' COMPETITIVE MEDIC CONFIG LOADED ***"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement