mIRC Home    About    Download    Register    News    Help

Print Thread
#193759 25/01/08 07:11 AM
A
after_life
after_life
A
im Looking For A Script and this is want i want it to do. I link it up To one Channel. then i Link it up To another Channel on Different Server. Then Them 2 Servers Can Speak To Each Other With out Swapping irc servers. to be honest it be a Great Way for People To Talk Dont you think Get Servers To talk to each other. if anyone can make/get me this script would be Brilliant smile.

L
LostShadow
LostShadow
L
*Bumps topic*

Tell us how it is possible exactly for 2 channels to "link" together.

If you can't define what you meant, maybe you can provide to us a specific example.

Or Else You Will See Yourself Without A Response !!

X
XTZGZoReX
XTZGZoReX
X
Sure, you can do a relay, but that's kind of annoying in the end...

Code:
on *:text:*:#: {
  if ( $chan == #chan1 ) {
    if ( $server == some.irc.server
      scon !msg #chan2 $+([,$nick,]) $1-
    }
  }
  if ( $chan == #chan2 ) {
    if ( $server == some.other.irc.server ) {
      scon !msg #chan1 $+([,$nick,]) $1-
    }
  }
}


Pretty sure that'll work.


Link Copied to Clipboard