sorry to post here but could not find anything else about this.

i want to echo a specfic word from a channel on one server and echo it to another channel on another server.say if someone says
!latest it echos only !latest to the other server and nothing
else.

heres code that i found simmillar to what i want But it echos all the text and all i want to echo is the one word when typed.


on *:text:*:#channel: {
if ($network == TheNetworkYouGetTextFrom) {
var %network = TheNetworkYouSendTextTo , %schan = #ChannelToSendTextTo
var %text = $+(<,$nick,>) $1- , %i = 1
while ($scon(%i)) {
if ($scon(%i).network == %network) { scon $scon(%i) msg %schan $(%text,0) | return }
inc %i
}
}
}

Last edited by cashed; 02/11/05 02:19 AM.