Online chat log viewer?

Locked
johnycc
Posts: 2
Joined: Wed Jan 23, 2008 7:24 pm

Online chat log viewer?

Post 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
johnycc
Posts: 2
Joined: Wed Jan 23, 2008 7:24 pm

Re: Online chat log viewer?

Post by johnycc »

No one?
I have seen log parsers for stats and things but not chat :o
^misantropia^
Posts: 4022
Joined: Sat Mar 12, 2005 6:24 pm

Re: Online chat log viewer?

Post 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
Locked