Guest User

Untitled

a guest
Mar 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. ----------------------------------------------------------------------------
  2. // Binds:
  3. // F1 = Tap twice to move to new spawn room
  4. // F2 = Have all teammates nearby show their location
  5. // M1 = Medi gun/kritzkrieg
  6. // M2 = Syringe gun/blutsauger, when getting out will make all teammates call
  7. // out
  8. // M3 = Bonesaw/ubersaw
  9. // M4 = Charge, will switch to medi gun/kritzkrieg automatically, will drops
  10. // any intelligence being carried, and will also mask the "go go go"
  11. // voice trigger
  12. // C = Vocalise fake ubercharge
  13. //
  14. // Shift commands:
  15. // SHIFT + C = Mask
  16. // SHIFT + O = Kill self (to move place in spawn, etc)
  17. // ----------------------------------------------------------------------------
  18. // If you want to automatically undo this when changing to another class, put
  19. // this in the config for that class (obviously uncomment it first)
  20.  
  21. // (You might want to put it in your autoexec as well, because binds are
  22. // retained between sessions)
  23. //
  24. // 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";-forward;echo "*** MEDIC CONFIG UNLOADED ***""
  25. // resetmedcfg
  26. //
  27. // OR
  28. //
  29. // bind a key to it in your autoexec only like:
  30. //
  31. // 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";-forward;echo "*** MEDIC CONFIG UNLOADED ***""
  32. // bind "p" "resetmedcfg"
  33. // resetmedcfg
  34. // ----------------------------------------------------------------------------
  35.  
  36. // ----------------------------------------------------------------------------
  37. // Autocall changer
  38. // ----------------------------------------------------------------------------
  39. // An autocall changer is useful to get a 'radar' like effect to visualise the
  40. // location of players around you.
  41. // ----------------------------------------------------------------------------
  42. alias autocall_initial "hud_medicautocallersthreshold 50" // Initial autocall
  43. // percentage
  44. alias autocall_temp "hud_medicautocallersthreshold 150" // Autocall percentage
  45. // when getting out
  46. // blutsauger/syringe
  47. alias +autocall_temp_hit "autocall_temp"
  48. alias -autocall_temp_hit "autocall_initial"
  49.  
  50. // ----------------------------------------------------------------------------
  51. // Weapon aliases
  52. // ----------------------------------------------------------------------------
  53. alias +heal "slot2;+attack;autocall_initial"
  54. alias -heal "-attack"
  55. alias +needles "slot1;+attack;autocall_temp"
  56. alias -needles "-attack"
  57. alias +saw "slot3;+attack;autocall_temp"
  58. alias -saw "-attack"
  59.  
  60. // ----------------------------------------------------------------------------
  61. // Ubercharge
  62. // ----------------------------------------------------------------------------
  63. alias +charge "+attack2;slot2;dropitem;say_team "*** CHARGE USED ***";voicemenu 0 0;autocall_initial"
  64. alias -charge "-attack2"
  65.  
  66. // ----------------------------------------------------------------------------
  67. // Fake ubercharge
  68. // ----------------------------------------------------------------------------
  69. // Useful even against experienced teams, I often use it when I am at 70% and
  70. // they are at 100% when they are about to push, as it usually makes teams slow
  71. // down, because they don't think they have an advantage any more. Often if you
  72. // fake an ubercharge at a realistic time, you can get the few seconds you need
  73. // to get it yourself, it's saved countless rounds for me.
  74. // ----------------------------------------------------------------------------
  75. alias fakeuber "voicemenu 1 7;say_team "*** FAKED CHARGE ***""
  76.  
  77. // ----------------------------------------------------------------------------
  78. // Call masking
  79. // ----------------------------------------------------------------------------
  80. // Useful to make it more difficult for the enemy to tell when/if you have
  81. // uber. Any decent team will know anyway, though.
  82. // ----------------------------------------------------------------------------
  83. alias maskuber "voicemenu 0 0;say_team "*** CHARGE READY ***""
  84.  
  85. // ----------------------------------------------------------------------------
  86. // Spawn move
  87. // ----------------------------------------------------------------------------
  88. alias forwardspawn_random "join_class "random";alias "forwardspawn_toggle" "forwardspawn_medic""
  89. alias forwardspawn_medic "join_class "medic";alias "forwardspawn_toggle" "forwardspawn_random";say_team "*** MOVED SPAWN ***""
  90. alias forwardspawn_toggle "forwardspawn_random"
  91.  
  92. // ----------------------------------------------------------------------------
  93. // Binding
  94. // ----------------------------------------------------------------------------
  95. alias +shiftmask "bind c "maskuber";bind o "kill""
  96. alias -shiftmask "bind c "fakeuber";unbind o"
  97. alias slot1bind "slot1;autocall_temp"
  98. alias slot2bind "slot2;autocall_initial"
  99. bind c "fakeuber"
  100. bind f6 "forwardspawn_toggle"
  101. bind f7 "+autocall_temp_hit"
  102. bind mouse1 "+heal"
  103. bind mouse5 "+needles"
  104. bind mouse4 "+saw"
  105. bind mouse2 "+charge"
  106. bind shift "+shiftmask"
  107.  
  108. // Print to console
Add Comment
Please, Sign In to add comment