We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const cvar = (line) => { //log L 12/16/2019 - 22:20:09: Server cvar "mp_friendlyfire" = "0" const items = line.match( /log L ([0-9]{2})\/([0-9]{2})\/([0-9]{4}) - ([01]?\d|2[0-3]):([0-5]\d):([0-5]\d): Server cvar "(.+)" = "(.*)"/i ); return { event: "cvar", cvarName: items[7], cvarValue: items[8], time: { ss: items[6], mm: items[5], hh: items[4] }, date: { dd: items[2], mm: items[1], yy: items[3] } }; };
The text was updated successfully, but these errors were encountered:
And an extension of this would be if the cVAR was modified by an admin and who. or it's just server.cfg reloading after changing map.
Sorry, something went wrong.
kallefrombosnia
No branches or pull requests
The text was updated successfully, but these errors were encountered: