09-26-2011, 05:28 PM
(09-26-2011, 04:49 PM)nowego4 Wrote: In general you seem to like the idea of binding stuff to keys. This is a great thing to do except that there are limited keys, and most players already have spare keys bound to messages and other stuff. The more free keys we leave the less they work players will have to go through to make a custom keybinds to their own preferences.
You can bind a keys that rebind keys for different needs and make them toggle key using different config files:
ex:
bind c exec chatconfig.cfg (c here is a toggle key)
chatconfig.cfg
===============
bind a say "hello"
bind b say "good one"
...
...
bind c exec normalconfig.cfg
normalconfig.cfg
==============
bind a r_ambiant 100
bind b r_ambient 10
bind s exec identity-one.cfg
bind w exec cts.cfg
bind 5 exec vcall.cfg
...
...
bind c exec chatconfig.cfg
cts.cfg
===========
bind MOUSE6 kill
cl_allow_vidtracking
cl_allow_vid2name
bind c exec normalconfig.cfg
and so on, you can have hundreds command binded this way just avoid to be lost in your logical when writing your config files.

