Chris Bass wrote:
Is there stats package or program out there will analyze logs for chat messages?
You just want seperate chat log files? Linux: grep -h say *.log | grep -v rcon > chat.log DOS: find "say" *.log | find /v "rcon" > chat.log Excluded rcon to avoid rcon_password disclosures if you want them to share with users wich don't have rcon access. If you still have too many unnecessary lines add some more "grep -v PATTERN" and "find /v PATTERN" respectivly. _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlds

