Jump to content

Console log


Ray

Recommended Posts

Hello

Is there some software that can convertthe logs to normal readable text for silEnT?

I've tried the ET Snitch for server admins, but seems that it only works for Jaymod,NQ anf ETPub.

Anyone got ideas? :)

Thanks

Ray

 

 

Link to comment
Share on other sites

  • Management

I don't know of any parsers. I'm using my own PHP script on my server which has the following selections:

if(strpos($line,'say:')===0) {
				$color=2;
			} else if(strpos($line,'sayteam:')===0) {
				$color=5;
			} else if(strpos($line,'saybuddy:')===0) {
				$color=3;
			} else if(strpos($line,'privmsg:')===0) {
				$color=3;
			} else if(strpos($line,'tprivmsg:')===0) {
				$color=3;
			} else if(strpos($line,'mprivmsg:')===0) {
				$color=3;
			} else if(strpos($line,'adminchat:')===0) {
				$color=8;
			} else if(strpos($line,'voice:')===0) {
				$color=2;
			} else if(strpos($line,'^7 called a vote.  Voting for:')) {
				$color=0;
			} 

I'm posting this as a sample of the keywords if anyone wants to do a script for the purpose.

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...