User:Eddycurrents
From TF2 Wiki
My scripts...
Quickchop
- This script whips out the axe for a quick chop then switches to previous weapon.
- Best used when behind an unsuspecting enemy to whack off a chunk of health then finish off with flamethrower. Often they don't notice the initial chop. The downside is, if they start running away from you and they are a fast class like sniper or demo, you probably won't get a chance to flame them... unless you keep running forward after the chop. Then again, sometimes the chop is all you need.
- Note -- you need to wait until the axe chop animation is done before attacking again, or it won't work. The timing isn't that hard though, still, for more automation check out my next script...
- Posted by Eddycurrents 10:21, 30 December 2007 (CST)
//Quickchop -- by Eddy Currents (eddy_currents@yahoo.com) //Tap key for quick chop with axe, then switches to previous weapon //Start quickchop a few steps from target //Wait until animation for axe is done before next attack //Note: the "wait 12" is delay for weapon switch animation, //and the "wait 120" is delay for axe attack animation: //Try shortening if you want, but too short and nothing works alias +quickchop "use tf_weapon_fireaxe; wait 12; +attack" alias -quickchop "wait 120; -attack; lastinv" bind "w" "+quickchop"
Pyrostab
- A natural evolution of the Quickchop. This script whips out the axe for a quick chop then switches to previous weapon, then starts auto-attacking with it. A second tap of the bound key toggles the attack off.
- Use when behind an enemy to whack off a chunk of health then finish off with flamethrower. Often they don't notice the initial chop. The downside is, if they start running away from you and they are a fast class like sniper or demo, you probably won't get a chance to flame them... unless you keep running forward after the chop. Then again, sometimes the chop is all you need.
- Posted by Eddycurrents 10:21, 30 December 2007 (CST)
//Pyrostab -- by Eddy Currents (eddy_currents@yahoo.com) //Tap key for quick chop with axe, switch to previous weapon (preferably flamer), then roast 'em //Tap key again to stop attack //Start pyrostab a few steps from target //Note: the "wait 12" is delay for weapon switch animation, //and the "wait 120" is delay for axe attack animation: //Try shortening if you want, but too short and nothing works alias +pyrostabtoggleon "+quickchop" alias -pyrostabtoggleon "-quickchop; alias +pyrostabtoggle +pyrostabtoggleoff; alias -pyrostabtoggle -pyrostabtoggleoff" alias +pyrostabtoggleoff "-attack" alias -pyrostabtoggleoff "alias +pyrostabtoggle +pyrostabtoggleon; alias -pyrostabtoggle -pyrostabtoggleon" alias +pyrostabtoggle "+pyrostabtoggleon" alias -pyrostabtoggle "-pyrostabtoggleon" alias +quickchop "use tf_weapon_fireaxe; wait 12; +attack" alias -quickchop "wait 120; -attack; lastinv; wait 12; +attack" bind "w" "+pyrostabtoggle"
