Project 1999

Go Back   Project 1999 > Red Community > Red Rants and Flames

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #11  
Old 02-26-2016, 06:49 AM
T7g T7g is offline
Banned


Join Date: Jul 2010
Posts: 69
Default

If you want a leaderboard just make your own.

Here's the source for the log parser portion of Clamdigger, blastfish; http://pastebin.com/sAJQQ7Fa

It's in Perl, but really, here's all you need to do to get chat text out of a log file;

run it in a loop, fill in variables where needed.

Code:
	open(EQLOG, $basepath . $logfile);					# derp

	@lines = <EQLOG>;							# Populate our lines array with the file contents

	close(EQLOG);								# ...and then close the file.

	unlink($basepath.$logfile);						# and then get rid of it, don't need it anymore.

foreach(@lines) {
   #watever~ Timestamp parsing code is in blastfish if you need it.
}
All the other routines you'd need or any parsing hints are all in the blastfish pastebin.

Shit's old so none of the authentication stuff works because the Clamdigger frontend hasn't run in years.
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:23 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.