Code:
on 1:TEXT:*:#: {
  ; Look for our name, and make we didn't say it (like an away message, etc)
  if (($me isin $1-) && ($nick != $me)) {
    ; make sure we are not on that network and also make sure we haven't echoed in the last 5 minutes
    if (($cid != $activecid) && (%say. [ $+ [ $cid ] $+ ] . [ $+ [ $nick ] ] == $null)) {
      ; Set a variable to make sure we get one echo per 5 minutes
      /set -u600 %say. [ $+ [ $cid ] $+ ] . [ $+ [ $nick ] ] 1

      ; Echo on the channel
      /echo $color(info) -ati2 * Your name was just said by $+(,$nick,) on channel $+(,$chan,) (Server: $server $+ )
    }
  }
}


-KingTomato