Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Auto call changer
  2. alias "autocall_initial" "hud_medicautocallersthreshold "50"" // Initial autocall percentage
  3. alias "autocall_temp" "hud_medicautocallersthreshold "150"" // Autocall percentage when getting out blutsauger/syringe
  4. alias "+autocall_temp_hit" "autocall_temp"
  5. alias "-autocall_temp_hit" "autocall_initial"
  6.  
  7. // Medigun/kritzkrieg
  8. alias "+heal" "slot2;+attack;autocall_initial"
  9. alias "-heal" "-attack"
  10.  
  11. // Syringe gun/blutsauger
  12. alias "+needles" "slot1;+attack;-reload;autocall_temp"
  13. alias "-needles" "-attack;+reload"
  14.  
  15. // Bonesaw/ubersaw
  16. alias "+saw" "slot3;+attack;autocall_temp"
  17. alias "-saw" "-attack"
  18.  
  19. // Uber and notification
  20. alias "+uber" "slot2;dropitem;+attack2;say_team "*** KRITZ OR UBER USED ***";voicemenu 0 0;autocall_initial"
  21. alias "-uber" "-attack2;"
  22.  
  23. // Fake uber and notification
  24. alias "fakeuber" "voicemenu 1 7;say_team "*** KRITZ OR UBER FAKED ***""
  25.  
  26. // Mask calls
  27. alias "maskuber" "voicemenu 0 0;say_team "*** MASKED UBER CALL ***""
  28.  
  29. // Spawn move
  30. alias "forwardspawn_random" "join_class "random"; alias "forwardspawn_toggle" "forwardspawn_medic""
  31. alias "forwardspawn_medic" "join_class "medic"; alias "forwardspawn_toggle" "forwardspawn_random";say_team "*** MOVED SPAWN ***""
  32. alias "forwardspawn_toggle" "forwardspawn_random"
  33.  
  34. // Shift mask
  35. alias "+shiftmask" "bind "C" "maskuber";bind "o" "kill""
  36. alias "-shiftmask" "bind "C" "fakeuber";unbind "o""
  37.  
  38. // Rebind aliases
  39. alias "slot1bind" "slot1;autocall_temp"
  40. alias "slot2bind" "slot2;autocall_initial"
  41.  
  42. // Bind
  43. bind "c" "fakeuber"
  44.  
  45. bind "f1" "forwardspawn_toggle"
  46. bind "f2" "+autocall_temp_hit"
  47. bind "mouse1" "+heal"
  48. bind "mouse2" "+needles"
  49. bind "mouse3" "+saw"
  50. bind "mouse4" "+uber"
  51. bind "mwheelup" "slot1bind"
  52. bind "mwheeldown" "slot2bind"
  53. bind "shift" "+shiftmask"
  54.  
  55. // Print to console
  56. echo "*** CHRIS' COMPETITIVE MEDIC CONFIG LOADED ***"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement