Advertisement
Guest User

plsrespond

a guest
Oct 21st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. //Right Click (hold down button) to uber no matter what is equipped,
  2. alias "+uber" "use tf_weapon_medigun; +attack2; voicemenu 2 4; spec_prev; say_team *** UBER/KRITZ USED ***"
  3. alias "-uber" "-attack2"
  4. bind "MOUSE2" "+uber"
  5.  
  6.  
  7. //Fake Uber call
  8. bind "MOUSE4" "voicemenu 1 7; say_team *** LOL FAKE UBER/KRITZ ***"
  9.  
  10.  
  11. //Show Players on Team Locations
  12. alias "autocall_initial" "hud_medicautocallersthreshold "75"" // Default value, 50 = 50%, 150 = fully buffed
  13. alias "autocall_temp" "hud_medicautocallersthreshold "150"" // Shows all targets
  14. alias "+autocall_temp_hit" "autocall_temp"
  15. alias "-autocall_temp_hit" "autocall_initial"
  16.  
  17. bind "t" "+autocall_temp_hit"
  18.  
  19.  
  20. //Loadout switcher for medic
  21. alias +loadoutA load_itempreset 0
  22. alias +loadoutB load_itempreset 1
  23. alias +loadoutC load_itempreset 2
  24. alias +loadoutD load_itempreset 3
  25. alias -loadoutA slot2
  26. alias -loadoutB slot2
  27. alias -loadoutC slot2
  28. alias -loadoutD slot2
  29. bind "F1" "+loadoutA"
  30. bind "F2" "+loadoutB"
  31. bind "F3" "+loadoutC"
  32. bind "F4" "+loadoutD"
  33.  
  34.  
  35.  
  36. cl_interp 0.014925
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement