here is a possible solution
you will need to fine tune the
Code:
on *:text:!pre *:#CHANNEL: {
  if ($network == NETWORK) && ($chan == #CHANNEL) {
    var %text = $read(FILENAME,W,$+(*,$2-,*))
    var %i = 1
    var %netcnt = $scon(0)
    while (%i <= %netcnt) {
      if ($scon(%i).network == DESTINATION-NET) { 
        scon $scon(%i) 
        msg #DESTINATION-CHAN $($+(%,text),2)
      }
      inc %i
    }
  }
}