Advertisement
Guest User

TF2 Medic Config - Autoheal -> mousewheel issue

a guest
May 10th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. //This stops the controls from previous classes messing this up
  2. exec config_default
  3.  
  4. // Uber on rmb with any weapon out (working)
  5. alias +charge "+attack2; +attack; slot2; r_drawviewmodel 1"
  6. alias -charge "-attack2; -attack"
  7. bind mouse2 +charge
  8.  
  9. // Amputator/Ubersaw Taunt (working)
  10. alias +amptaunt "slot3;wait 50; +taunt; wait 35; -attack1"
  11. alias -amptaunt "wait 200; -attack1"
  12. bind "MOUSE5" "+amptaunt"
  13.  
  14. // Movement (working)
  15. bind "W" "+forward"
  16. bind "S" "+back"
  17. bind "A" "+moveleft"
  18. bind "D" "+moveright"
  19.  
  20. // Crouch jump (working)
  21. alias +crouchjump "+jump; +duck"
  22. alias -crouchjump "-duck; -jump"
  23. bind "space" "+crouchjump"
  24.  
  25. // Mousewheel weapon switching (beta)
  26. alias weapon1 "slot1; alias weaponup weapon3; alias weapondown weapon2; alias +medicatk ss_n; alias -medicatk ss_f; syrisaw; hud_combattext_healing 1"
  27. alias weapon2 "slot2; alias weaponup weapon1; alias weapondown weapon3; alias +medicatk mg_n; alias -medicatk mg_f; medigun; hud_combattext_healing 0"
  28. alias weapon3 "slot3; alias weaponup weapon2; alias weapondown weapon1; alias +medicatk ss_n; alias -medicatk ss_f; syrisaw; hud_combattext_healing 1"
  29. bind MWHEELUP weaponup
  30. bind MWHEELDOWN weapondown
  31.  
  32. // Inverted medic healing (working but missing mousewheel functionality above)
  33. alias weapon1 "slot1; alias +medicatk ss_n; alias -medicatk ss_f; syrisaw; hud_combattext_healing 1"
  34. alias weapon2 "slot2; alias +medicatk mg_n; alias -medicatk mg_f; medigun; hud_combattext_healing 0"
  35. alias weapon3 "slot3; alias +medicatk ss_n; alias -medicatk ss_f; syrisaw; hud_combattext_healing 1"
  36. alias atk_n "alias syrisaw +attack; alias medigun -attack"
  37. alias atk_f "alias syrisaw -attack; alias medigun +attack"
  38. alias ss_n "+attack; atk_n"
  39. alias mg_n "-attack; atk_n"
  40. alias ss_f "-attack; atk_f"
  41. alias mg_f "+attack; atk_f"
  42. alias +medicatk "ss_n; spec_next"
  43. alias -medicatk "ss_f"
  44. atk_f
  45. bind 1 "weapon1"
  46. bind 2 "weapon2"
  47. bind 3 "weapon3"
  48. bind mouse1 "+medicatk"
  49. bind mouse2 "+uber_chrg"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement