I know I used (before computer crashed) a nice script that would automatically take out my melee weapon and start firing with it as long as the button was held down. When the button was released, it would bring out the last weapon used before the melee weapon. Really handy for quick stabs as spy, wrench swings as engi, ubersaw strikes as medic.
I'd like to find one, if it's even possible, for spy to handle disguising. A script that would pick a random disguise from a list of them that you give (for example, choose only from: pyro, demo, medic, engi, sniper). If not random, it could cycle through them. That way you could keep switching disguises while avoiding all the extra key strokes.
Anyone else have any nice useful scripts they use? I'd post mine, but as I said, computer is down, and that script was pieced together from a few different ones, so I can't just find it somewhere to C&P. I got it from the TF2 Wiki's database, just found a few different ones and put them all together.
Edit: I checked FPSBanana and found the script I was looking for, heh. Here it is, with an option "redisguise on attack" toggle:
//Backstab and redisguise
alias +AutoDisguise "+attack"
alias -AutoDisguise "-attack; value"
bind "mouse1" "+AutoDisguise"
//You can turn off the redisguise, if you need to capture a point, and dont want the redisguise to go off after each attack.
alias bs "bs_off"
alias bs_off "bind mouse1 +attack; bind f bs_on"
alias bs_on "bind mouse1 +AutoDisguise; bind f bs_off"
bind "f" "bs"
//Change color
alias team "redteam"
alias redteam "alias value red; echo ***RED TEAM***; bind f1 blueteam"
alias blueteam "alias value blue; echo ***BLUE TEAM***; bind f1 redteam"
bind "f1" "team"
//Redteam cycle
alias red "redscout"
alias redscout "disguise 1 2; alias red redsniper"
alias redsniper "disguise 2 2; alias red reddemo"
alias reddemo "disguise 4 2; alias red redpyro"
alias redpyro "disguise 7 2; alias red redengineer"
alias redengineer "disguise 9 2; alias red redscout"
//Blueteam cycle
alias blue "bluescout"
alias bluescout "disguise 1 1; alias blue bluesniper"
alias bluesniper "disguise 2 1; alias blue bluedemo"
alias
I'd like to find one, if it's even possible, for spy to handle disguising. A script that would pick a random disguise from a list of them that you give (for example, choose only from: pyro, demo, medic, engi, sniper). If not random, it could cycle through them. That way you could keep switching disguises while avoiding all the extra key strokes.
Anyone else have any nice useful scripts they use? I'd post mine, but as I said, computer is down, and that script was pieced together from a few different ones, so I can't just find it somewhere to C&P. I got it from the TF2 Wiki's database, just found a few different ones and put them all together.
Edit: I checked FPSBanana and found the script I was looking for, heh. Here it is, with an option "redisguise on attack" toggle:
//Backstab and redisguise
alias +AutoDisguise "+attack"
alias -AutoDisguise "-attack; value"
bind "mouse1" "+AutoDisguise"
//You can turn off the redisguise, if you need to capture a point, and dont want the redisguise to go off after each attack.
alias bs "bs_off"
alias bs_off "bind mouse1 +attack; bind f bs_on"
alias bs_on "bind mouse1 +AutoDisguise; bind f bs_off"
bind "f" "bs"
//Change color
alias team "redteam"
alias redteam "alias value red; echo ***RED TEAM***; bind f1 blueteam"
alias blueteam "alias value blue; echo ***BLUE TEAM***; bind f1 redteam"
bind "f1" "team"
//Redteam cycle
alias red "redscout"
alias redscout "disguise 1 2; alias red redsniper"
alias redsniper "disguise 2 2; alias red reddemo"
alias reddemo "disguise 4 2; alias red redpyro"
alias redpyro "disguise 7 2; alias red redengineer"
alias redengineer "disguise 9 2; alias red redscout"
//Blueteam cycle
alias blue "bluescout"
alias bluescout "disguise 1 1; alias blue bluesniper"
alias bluesniper "disguise 2 1; alias blue bluedemo"
alias
Last edited:













