What are you trying to do? I don't see what you mean.
You want it to "announce" something in Org Chat?
If I follow so far, it would just be:
function gc ($name, $msg)
{
if (preg_match("/^" . $this -> bot -> commpre . "announce (.+)$/i", $msg, $info))
$this -> bot -> send_gc($info[1]);
}
You can obviously fancy it up with ------------------ This is an alert --------------- And add spaces, etc.
Hope this helps.