I added this simple plugin to get fortune quotes (you need fortune installed on your Linux server).
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
<plugin active="1" executionorder="5" product="mgc_cb_evo">
<title>Fortune Quote</title>
<hookname>mgc_cb_evo_dm_mgccbchat_botend</hookname>
<phpcode><![CDATA[if ($notfound AND (strcasecmp('quote',$this->raw_chat) == 0))
{
$this->bot_answer = shell_exec('fortune');
$notfound = 0;
}
]]></phpcode>
</plugin>
</plugins>