Talk:General scripts
From TF2 Wiki
How to add my script ?
- Get an account, click edit at top of page, type it in, hope someone edits it in proper format.
For the scrollable voice binds script, I have a problem where after experimenting with my scripts, it no longer works. I've tried many variations. I know not what do.
I have a script that makes your character shout stuff randomly every so often while attacking, walking and jumping. Is there any neater way to do this than many repetitions of practically identical code?
Contents |
Highjump
I've had problems in the past where when I tried jumping rapidly, the time it'd take to stand up from crouching would cause me to simply repeatedly crouch instead of jump so I stopped using the script. Can anyone find a fix? --NiteCyper 23:51, 5 April 2008 (CDT)
Double tap
The second script should be a sub-menu of the first.
Crosshair Disco
Distracting, no? Honestly, it doesn't seem useful. It's an option for the sake of an option.
Crosshair Disco
Distracting, no? Honestly, it doesn't seem useful. It's an option for the sake of an option. --NiteCyper 05:33, 8 March 2009 (UTC)
- Most of the people I've shared it with have liked it. I like it. I even know some people who've suggested it in TF2 videos, and I've been asked by a few people to help them merge the disco with the wait permission tester. G-Mang 21:56, 31 May 2009 (UTC)
Wait Permission Script
This can be simplified if you alias wait because it will alway refers to the command if sv_allow_wait_command is 1 otherwise it is read as an unrecognized command. By making an alias that shares its name, it will be interpreted as the actual command if allowed or the alias if not.
alias w_enable "w_e_echo" alias w_disable "w_d_echo;w_d_echo;w_d:echo" alias w_e_echo "echo Wait command enabled on server. Scripts will have full functionality." alias w_d_echo "echo WAIT COMMAND DISABLED ON SERVER. USING WAIT LOOPS WILL CAUSE CRASH." alias wait "alias w_result w_disable" alias w_test "alias w_result w_enable;wait;w_result" w_test
