Title: [C++] toggle.cfg Author: gando Pastebin link: http://pastebin.com/pMeeRkdv First Edit: Wednesday 13th of July 2011 12:02:35 AM CDT Last Edit: Wednesday 13th of July 2011 12:02:35 AM CDT // the following script was a feature to bind a key to toggleperson to switch between firstperson and thirdperson. alias personswitch1 "rp_thirdperson;alias toggleperson personswitch2" alias personswitch2 "rp_firstperson;alias toggleperson personswitch1" alias toggleperson "personswitch1"   // The following code is to facilitate micspam. Bind a key to "toggle", and press that key, and you will begin firing +voicerecord. Press it again, and you will stop. alias toggle "toggle1" alias toggle1 "+voicerecord;say Now broadcasting.;alias toggle toggle2" alias toggle2 "-voicerecord;say Now no longer broadcasting.;alias toggle toggle1"   // HLSS legacy code /////////////////////////////////////////////////////////////////////// //alias hlss-START "voice_inputfromfile 1; +voicerecord; alias ToggleWAV hlss-STOP" //alias hlss-STOP "voice_inputfromfile 0; -voicerecord; alias ToggleWAV hlss-START" //alias ToggleWAV "hlss-START" ///////////////////////////////////////////////////////////////////////