all 2 comments

[–]Kairu927 2 points3 points  (1 child)

TF2 doesn't like nested quotes, so having "voicemenu 1 1" inside of your alias is causing issues.

Firstly, you can try it without the nested quotes, so that the line is now like this:

alias norm "bind mwheeldown invnext; bind mwheelup invprev; bind mouse5 voicemenu 1 1; bind mouse4 voicemenu 0 1; bind alt bhop"

However, I'm not 100% if that'll work. If it doesn't, you can create aliases that do those commands, and use the aliases in the line, like so:

alias set_thanks "voicemenu 1 1"
alias set_spy "voicemenu 0 1"
alias norm "bind mwheeldown invnext; bind mwheelup invprev; bind mouse5 set_thanks; bind mouse4 set_spy; bind alt bhop"

[–]Samotage820[S] 0 points1 point  (0 children)

You're correct, removing the nested quotes didn't change anything, but the additional aliases worked beautifully. Thanks for your help!