I'm trying to add a line to this proc that will make it msg the channel a separate line of text before it posts the stuff it's parsing...
Nothing I've tried has quite worked right...

bind time - "00 * * * *" bbc:auto
proc bbc:auto { min hour day month year } {
foreach chan [channels] {
if {[botonchan $chan] && [string match "*+news*" [channel info $chan]]} {
bbc:parse "http://news.bbc.co.uk/2/low.html" 1 $chan $chan }
}
}
If anyone could point me in the right direction as to where to put the extra line, I'd be grateful!
thanks.