Wondering if anyone can help me with a bind I'm trying to set up but having trouble with. My intent is to have some of the movement keys (A,D,Q,E) swap out function when I trigger my mouselook toggel so that with no mouselook A and D turn the avatar, but when mouselook is on A and D strafe the avatar instead.
So I set up two bind files as follows
nomouselook.txt contains[ QUOTE ]
x "bind_load_file c:\coh\mouselook.txt$$++mouselook$$tell $name, -- Looklock OFF --"
A "nop"
D "nop"
Q "nop"
E "nop"
A "+left"
D "+right"
E "+turnright"
Q "+turnleft"
NUMPAD1 "tell $name, The nomouselook file is loaded."
[/ QUOTE ]
and the file mouselook.txt contains[ QUOTE ]
x "bind_load_file c:\coh\nomouselook.txt$$++mouselook$$tell $name, -- Looklock ON --"
A "nop"
D "nop"
Q "nop"
E "nop"
A "+turnleft"
D "+turnright"
E "+right"
Q "+left"
NUMPAD1 "tell $name, The mouselook file is loaded."
[/ QUOTE ]
When I try to use this however it doesn't switch right. Any insight would be helpful.