Skip to content

Instantly share code, notes, and snippets.

@riaf
Created May 21, 2010 09:08
Show Gist options
  • Select an option

  • Save riaf/408641 to your computer and use it in GitHub Desktop.

Select an option

Save riaf/408641 to your computer and use it in GitHub Desktop.
<?php
require_once 'Net/IRC/Client.php';
class WozozoBot extends Net_IRC_Client
{
protected function on_privmsg($m) {
list($prefix, $msg) = $m->params;
if ($msg == 'wozozo')
$this->privmsg($prefix, 'yudoufu');
}
}
$bot = new WozozoBot('localhost', 6667, array('user' => 'wozozo2', 'nick' => 'wozozo2'));
$bot->connect();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment