Difference between revisions of "General Scripts"
m (updated forum member links) |
|||
| Line 146: | Line 146: | ||
alias "0.5s" "MW; MW; WEL" | alias "0.5s" "MW; MW; WEL" | ||
alias "0.75s" "0.5s; 0.25s"</pre></code>}} | alias "0.75s" "0.5s; 0.25s"</pre></code>}} | ||
| + | |||
| + | ==Simpler Bunnyhopping== | ||
| + | Script by [http://forums.fortress-forever.com/member.php?u=17409 There's jetpack Pyros?] | ||
| + | |||
| + | '''Instructions:''' | ||
| + | |||
| + | Place the following code into your [[Userconfig_default|userconfig.cfg.]] | ||
| + | |||
| + | What this script does is that it rebinds your strafe keys, so you can look and strafe without moving your mouse while bunnyhopping. You can also jump higher using this script. | ||
| + | |||
| + | {{Scripts | Description=Bunnyhopping Script | Script=<code><pre> | ||
| + | alias +hopduck "+jump;+duck" | ||
| + | alias -hopduck "-jump;-duck" | ||
| + | alias "+leftstrafelook" "+left;+moveleft" | ||
| + | alias "-leftstrafelook" "-left;-moveleft" | ||
| + | alias "+rightstrafelook" "+right;+moveright" | ||
| + | alias "-rightstrafelook" "-right;-moveright" | ||
| + | alias "+ebunnyhop" "+hopduck;bind a +leftstrafelook;bind d +rightstrafelook" | ||
| + | alias "-ebunnyhop" "-hopduck;bind a +moveleft;bind d +moveright" | ||
| + | bind "SPACE" "+ebunnyhop" | ||
| + | </pre></code>}} | ||
| + | '''WARNING:''' Do not hold the strafe keys when you stop bunnyhopping. Release the keys before finishing your bunnyhop. | ||
Latest revision as of 15:02, 15 March 2012
Below you will find examples of some of the most common general scripts. You will find that these scripts have nothing to do with the character classes. You will need to place these scripts into your userconfig.cfg.
Teamsays for medic, engineer and ammo
alias medicshout "say_team Need a Medic! ^2[^4%h^5|^3%a^2]; saveme" alias engyshout "say_team Need some Armor! ! ^2[^4%h^5|^3%a^2]; engyme" alias ammoshout "say_team Need some Ammo! %c main weapon ^2 LOW" alias +medictoggle "bind x ammoshout; bind c engyshout" alias -medictoggle "bind x discard; bind c dropitems" bind "your key" +medictoggle
by holding "your key" it will temporarily rebind x and c to give you specific options that report vitals as well. Releasing mouse5 will rebind them to the defaults.
Script by PorkChopVII
Instructions:
Place the following code into your userconfig.cfg.
|
Non-Stop Demo Recording
Script by DarK_TaO
Instructions:
Place the following code into your userconfig.cfg.
To change the key, replace the following line with your desired key:
bind "key" "startrec"
An example using the "f" key:
bind "f" "startrec"
|
Toggle Crouch
Script by paranoidkirb
Instructions:
Place the following code into your userconfig.cfg.
|
Wait Script
Script by DarK_TaO
Instructions:
Place the following code into your userconfig.cfg.
|
Simpler Bunnyhopping
Script by There's jetpack Pyros?
Instructions:
Place the following code into your userconfig.cfg.
What this script does is that it rebinds your strafe keys, so you can look and strafe without moving your mouse while bunnyhopping. You can also jump higher using this script.
|
WARNING: Do not hold the strafe keys when you stop bunnyhopping. Release the keys before finishing your bunnyhop.