Forums » General

Help with binding

Mar 07, 2004 Mace link
how do i bind;
q - Strafe right
w - accelerate
d - Roll right

all to one key?
Mar 07, 2004 timmy10150 link
me no know
Mar 07, 2004 roguelazer link
/alias superkey "+StrafeRight; +Accelerate; +RotateCW"
/bind something superkey

OR

/alias supererkey "+StrafeRight; wait 1; +Accelerate; wait 1; +RotateCW"
/bind something supererkey
Mar 07, 2004 Mace link
thanks, I'll try them
Mar 07, 2004 roguelazer link
:o Cool
Mar 08, 2004 Forum Moderator link
[several multi-posts and replies deleted]

FYI: use the "back to index" and "forum index" buttons to get around instead of using your browser's backward/forward buttons so you don't get the multi-post problem.

[locked]
Mar 07, 2004 Eldrad link
Mace this is probably more what you're looking for:
/alias +superkey "+StrafeRight; +Accelerate; +RotateCW"
/alias -superkey "+StrafeRight 0; +Accelerate 0; +RotateCW 0"
/bind something +superkey

and rog your two possible suggestions are identical. The syntax of wait is: wait # command
It waits # seconds (rounding to a whole number, I think it always rounds down) then exicutes command.

Example:
type:
/wait 3 'echo 3'; wait 2 'echo 2'; wait 1 'echo 1'; wait 6; echo 0
result:
0
<1 second delay>
1
<1 second delay>
2
<1 second delay>
3
<3 second delay... but nothing happens after it>
Mar 08, 2004 Mace link
thanks, and FM can you delete/lock this thread?