statsincludes/stats_logger.php
author Dan
Sun, 07 Dec 2008 08:45:54 -0500
changeset 31 d75124700259
parent 20 e2f6e3af9959
permissions -rw-r--r--
Timeout recovery should avoid getting the bot throttled now :)

<?php

eb_hook('event_channel_msg', 'stats_event_privmsg($chan, $message);');

function stats_event_privmsg($chan, $message)
{
  $channel = $chan->get_channel_name();
  stats_log_message($channel, $message['nick'], time());
}