Im usually ok with my config based stuff, but I got a cvar warning from a server for autoactio=0, must be 7. Any ideas?
cg_autoaction
Kendle
(Kendle)
#3
Some leagues require all players to take demos of matches (I think ESL is one such league), and therefore require a client-side setting called cg_autoaction to be set.
This cvar takes various values (which I can’t remember off the top of my head) but 7 = Demo + Screenshot (of the scoreboard at the end of the round) + Stats. I use a toggle to turn it on and off:-
set demo-on "set demo-tog vstr demo-of; cg_autoaction 7; echo ^9[^3Auto Demo ^aENABLED^9]"
set demo-of "set demo-tog vstr demo-on; cg_autoaction 0; echo ^9[^3Auto Demo ^aDISABLED^9]"
set demo-tog "vstr demo-on"
bind x "vstr demo-tog"