I didn't used to hate lolcats, but over the last year or so,
some people have been overusing them. So much, in fact, that I have written a script specifically designed to remove them from my view and into the status window (so I may review them if I need to). If any of you have mIRC and would like to benefit from my frustration, put this snippet in the remotes tab of your mIRC script editor:
Code: Select all
on ^*:ACTION:*cat*:*: {
on ^*:ACTION:*cat*:*: {
if ($regex($1-,(?i)\b[\d\w]+cat(s*)?\b) & !$regex($1-,(?i)\b(bear|bob|copy|du|hell|hep|magnifi|mud|mus|pole|pussy|requies|s|tip|tom|wild|house)cat\b)) {
/echo -s - $chan $timestamp $chr(42) $nick $1-
/halt
}
}
This uses regular expressions to evaluate the message and decide whether or not there is a lolcat in any of it.
This has helped me keep from raging at my computer. Maybe it can help you, too.