Just a quick tip on how to make your bot do an ACTION, the equivalent to /me as you might do.
There's a control character (ascii 1) that needs to wrap your text, and the ACTION keyword added in your message.
in your "ziggi" (plugin)
//normal
$this->pm("This is a normal message");
//action
$this->pm( chr(1)."ACTION enjoys ...
ziggi - 5 Comments »