After reading a thread about using controllers and seeing a few more people ask about them it got me thinking about scripts to bind multiple actions to a single key thus freeing up more buttons on the controllers.
So one idea I thought would be to have the gameplay help and weaponset help binded onto 1 key but I cant get it to function.
so far I have this
alias help "cl_ge_gameplay_help;bind h help2"
alias help2 "cl_ge_weaponset_list;bind h help3"
alias help3 "cl_ge_weaponset_list;bind h help"
bind "h" "help"
but using that doesn't work it simply prints out in the console "unknown command cl_ge_gameplay_help"
Anyone know where I am going wrong?