| View previous topic :: View next topic |
| Author |
Message |
Suratka Voice
Joined: 25 Jun 2016 Posts: 19
|
Posted: Fri Nov 29, 2019 3:38 pm Post subject: tcl better than spychan. |
|
|
does someone by chance know a tcl for eggdrop that acts as a two-channel channel?
I tried "spychan", but it is a unique sense, it works by itself to read what is said in a channel.
I need a tcl that acts as an intermediary and functions both in reception and transmission.
once if I'm not mistaken I had a tcl like that, whose name I don't remember.
It gave the possibility to activate and deactivate with the "! Gateon" command
"! Gateoff".
Does anyone remember the name of the tcl and where can I find it? |
|
| Back to top |
|
 |
willyw Revered One
Joined: 15 Jan 2009 Posts: 1175
|
Posted: Fri Nov 29, 2019 3:45 pm Post subject: Re: tcl better than spychan. |
|
|
| Suratka wrote: |
...
Does anyone remember the name of the tcl and where can I find it? |
Not specifically.
Have you checked here:
http://tclarchive.org/
There is a whole section of "Channel Linking Scripts".
Perhaps one of them might look familiar to you. _________________ For a fun (and popular) Trivia game, visit us at: irc.librairc.net #science-fiction . Over 300K Q & A to play in BogusTrivia ! |
|
| Back to top |
|
 |
Suratka Voice
Joined: 25 Jun 2016 Posts: 19
|
Posted: Sat Nov 30, 2019 6:44 am Post subject: |
|
|
Of course I checked.
there is not, probably just because it does not have a name attributable to "chan", "link", "reley". so if there were, it is impossible to find it without knowing the name. |
|
| Back to top |
|
 |
CrazyCat Revered One

Joined: 13 Jan 2002 Posts: 1032 Location: France
|
Posted: Tue Dec 03, 2019 4:36 am Post subject: |
|
|
You want that the same eggdrop mades the relay between two chans ?
I did a chanrelay but it needs botnet.
btw, this kind of script is quite simple:
| Code: | bind pubm - "#chan1 *" pubrelay
proc pubrelay {nick uhost handle chan text} {
putserv "PRIVMSG #chan2 :($nick) $text"
}
bind ctcp - "ACTION" actrelay
proc actrelay {nick uhost hand chan key text} {
if { $chan != "#chan1" } { return 0 }
putserv "PRIVMSG #chan2 :*$nick $text"
} |
This is just the principe, not a script to use as is  _________________ https://www.eggdrop.fr - French IRC network
Offer me a coffee - Do not ask me help in PM, we are a community. |
|
| Back to top |
|
 |
|