quanticc / lawena-recording-tool

Simple movie recording tool for Source Engine games
http://lawena.github.io/
GNU General Public License v3.0
80 stars 16 forks source link

How was removing the voice command menu done? #60

Closed DannyJS1 closed 9 years ago

DannyJS1 commented 9 years ago

An issue I've been having with demo playback is that the voice command menu and taunt selection menus linger after a voice command/taunt is used during the playback. I've solved the taunt issue by unequipping the taunts before playing the demo, but I've never figured out how to remove the voice command menu that appears when you press z, x, or c. When I tried this tool out, I saw that the voice menu was completely gone during a demo playback. How did you disable it? How can I disable it myself without using the tool?

quanticc commented 9 years ago

Aliasing a command to an empty string will disable it. For instance:

alias voice_menu_1 ""
alias voice_menu_2 ""
alias voice_menu_3 ""
DannyJS1 commented 9 years ago

Thanks, that worked! I just wish there was a different way of disabling the taunt selection menu instead of having to unequip them. alias taunt "" doesn't work.

quanticc commented 9 years ago

try alias +context_action "" and alias +taunt ""

The + is important

DannyJS1 commented 9 years ago

Dude, thanks a lot! You have no idea how frustrated I've been with this. That's all I needed to ask, I'll just close the issue now. Thanks again!