
This script fixes the “bug” the developers made when creating ET (and rtcw) which will have you press F12 to start recording a demo but doesn’t stop when pressing that button again…
bind “F12″ “vstr demotoggle”
set demotoggle “vstr demostart”
set demostop “set demotoggle vstr demostart; stoprecord”
set demostart “set demotoggle vstr demostop; autorecord”
This is just a random toggle like we made earlier.
But I’ll explain it again anyways.
1. We set F12 to launch the demotoggle command that we will create at 2nd last line (you can put the line anywhere)
2. Set the demotoggle command we want to run when pressing F12 by making it run the first option in the toggle.
3. Set the first option it’s things that it should do and make sure to let it run the command for the 2nd part of the toggle
4. Do the same as step 3 but let the command go back to the first toggle so it will keep looping if you keep pressing.




