In Relay_GUILD.php
/*
This gets called on a msg in the group
*/
function gmsg($name, $group, $msg)
{
if (strtolower($name) != strtolower($this -> bot -> botname))
$this -> bot -> send_pgroup($highlight ."$name:</font><font color=#0FF20B> $msg");
}
/*
This gets called on a msg in the privgroup without a command
*/
function privgroup($name, $msg)
{
if (strtolower($name) != strtolower($this -> bot -> botname))
$this -> bot -> send_gc($highlight ."[Guest] $name:</font><font color=#0FF20B> $msg");
}
If you remove the if statement from both functions the bot will repeat itself, but i think it will do an infite amount of time (this is BAD). So a work around is to use send_pgroup and send_gc in the function that you want to echo in both channels.