User:Hishighness
From TF2 Wiki
I'm Hishighness.
My favorite class is the Spy
Scripts I've Written
2 Button Auto Heal/Hold
- This script allows you to start the auto heal with 1 button and have it continue until (and only until) you hit that same button again. Pressing the 2nd button will only hold fire until it's released. This way you can either choose continual heal mode or regular attack mode, and you can switch healing targets easily using your regular shoot button.
- Example
- - Press MOUSE2 (this turns on auto heal)
- - Press and hold MOUSE1 (this holds heal beam and allows you to aim at another patient)
- - Release MOUSE1 (this starts the auto heal back up)
- - Press MOUSE2 (This turns auto heal off, allowing you to fire the normal way with MOUSE1)
- I like this because it makes it easy for me to re-aim at another patient or switch to attack mode if I have to defend myself.
// MOUSE2 Auto heal toggle with MOUSE1 hold. alias "healToggle" "heal1" alias "heal1" "+attack; alias healToggle heal2; bind MOUSE1 +switch" alias "heal2" "-attack; alias healToggle heal1; bind MOUSE1 +attack" alias +switch "-attack" alias -switch "+attack" bind "MOUSE3" "healToggle" bind "MOUSE1" "+attack"
