4m wrote:Oh no!! The lag map times TWO !!!!![]()
![]()
I will have to hardwire my lappy to my router!
Can the server set the clients' effect and video settings? At least it should automatically start the demo recording.
Yes to the former (although not by cvar, but by an one-line modification to the game code), no to the latter. Only the client can decide that a demo is to be run. Okay, the server could fetch a client cvar and do something like
- Code: Select all
if(self.cvar_cl_demostarted)
stuffcmd(self, "set cl_demostarted 0\n");
else
stuffcmd(self, "set cl_demostarted 1; disconnect; wait; rec demoSOMEID; connect 1.2.3.4\n");
when the cvar is received. Anything but clean, so it for sure won't enter the official game code, but for such an event a server could be rigged with such code.