mIRC Homepage
Some time ago I posted a similar question, someone replied that this script should do the job:

Code:
on *:TEXT:*:#channel:{

  if ($cid == 1) scid 2 msg #channel_2 < $nick > $1-

}
 

And it does, but it doesn't copy the text that I write.

The question is: is there any way to copy my own text to a channel in a different server/network?

Sorry for my bad English.
That script is exploitable. Replace it with this:

Code:
on *:TEXT:*:#channel:{
  if ($cid == 1) {
    scid 2 
    msg #channel_2 < $nick > $1-
  }
}


To do your own text try this:

Code:
on *:input:#channel:{
  if ((!$istok(/ $readini($mircini,text,commandchar),$left($1,1),32)) || ($ctrlenter)) && ($cid == 1) {
    scid 2
    msg #channel_2 < $me > $1-
  }
}
Thanks, It worked perfectly ^^
I would use this

scon -at1 if $!network == DalNet && $!me ison #channame { msg #channame $1- }

you need to change the network name of course and the channame

instead of

scid 2
msg #channel_2 < $nick > $1-

scid 2 means that you would always have to make a concious effort to connect to the networks in a specific
That script is exploitable.
© mIRC Discussion Forums