A list of which players each player has mentioned and when they mentioned them.
If you feel like going so far, that is.
But, that won't account for nicknames or misspellings, unless you could add them. So, if I called you Toma, it'd be totally foreign to the LT, unless I added them. Without that, seems totally doable to find all instances of a word in their posts.
Right now, I scrape a page and start ripping out all the posts and attaching them to each player. It keeps everything said in the post because it's greedy, and I want it to be able to look for anything in the post. Each post it comes across, it checks for any red text, and whatever the last instance is, it'll add as a vote. It also checks who sent it and attaches it to that player. I suppose it should also timestamp, so that's going to be the next step.
Right now, though, it's not ignoring quotes, which shouldn't be difficult. It also doesn't scrape multiple pages just yet because it doesn't look like it can grab higher post-per-page counts than the forum standard without an account setting, which is a real travesty for bandwidth and request minimization, and I'm not sure how to handle that so that I don't potentially get bot-smashed like the bot it is but also save precious few kilobits like they're going extinct. So, it's maybe 30% done max, which ain't bad for like 2 nights of lazy coding.
Potential issues that can occur: I can set up some sort of database for caching if people wanted an online version, which would save time and bandwidth, but if a post is ever editted, it would never find out without some sort of re-scrape, but I feel like that would require some sort of manual override. But again, I'm saving them digital bits, so not my problem.