Binds in CS Source

Dr. Freeman

Newbie
Joined
Jul 11, 2003
Messages
6,785
Reaction score
2
i was wondering something.
u know how in CS1.6 u can go into options and bind the fire button to two different keys?

well...i'd like to bind fire to mouse1 and another key but apparently in the options for Source theres no way to choose a second key for it.

i was wondering if theres another way to bind fire to a second key.
anyone know this?
 
Good question. I think you can do it by typing in console :
bind "key" "+attack1"
Then repeat it for the other key.

If that doesn't work, try putting this in your config file :
bind "key" "+attack1" (mouse button)
alias "kill" "+attack1"
bind "key "kill" (other key)
 
create a userconfig.cfg, similar to 1.6. in your autoexec put

exec userconfig

//autoexec.cfg
exec userconfig

//userconfig.cfg
bind mouse1 +attack
bind enter +attack

putting them in autoexec doesn't work, because the 2nd bind overwrites the previous ones. but put them in a userconfig and it will bind both keys.
 
Back
Top