Page 1 of 1

Online chat log viewer?

Posted: Wed Jan 23, 2008 7:37 pm
by johnycc
Hi,
I was wondering if anyone knows how to have a webpage which displayed all chat from my server (with persons alias and the time etc), probably from the servers log?
Hopefully once setup, it would be able to keep updating itself from the server.
I have seen such a thing but have no idea how it is done.
Many thanks in advance :D

Re: Online chat log viewer?

Posted: Sat Mar 01, 2008 6:10 pm
by johnycc
No one?
I have seen log parsers for stats and things but not chat :o

Re: Online chat log viewer?

Posted: Sat Mar 01, 2008 7:00 pm
by ^misantropia^
I'm not aware of one but below is a simple Perl one-liner that should do what you want. Note that I tested it against OpenArena as I don't have Q3 installed on my laptop.

Code: Select all

perl -ne '/^\s*(\d+:\d+) say: (.+): (.+)$/ && print "[$1] $2: $3\n"' games.log