Forums » General
Help with binding
how do i bind;
q - Strafe right
w - accelerate
d - Roll right
all to one key?
q - Strafe right
w - accelerate
d - Roll right
all to one key?
me no know
/alias superkey "+StrafeRight; +Accelerate; +RotateCW"
/bind something superkey
OR
/alias supererkey "+StrafeRight; wait 1; +Accelerate; wait 1; +RotateCW"
/bind something supererkey
/bind something superkey
OR
/alias supererkey "+StrafeRight; wait 1; +Accelerate; wait 1; +RotateCW"
/bind something supererkey
thanks, I'll try them
:o Cool
[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]
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]
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>
/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>
thanks, and FM can you delete/lock this thread?