This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

tcl better than spychan.

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
S
Suratka
Voice
Posts: 19
Joined: Sat Jun 25, 2016 4:56 pm
Contact:

tcl better than spychan.

Post by Suratka »

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?
w
willyw
Revered One
Posts: 1197
Joined: Thu Jan 15, 2009 12:55 am

Re: tcl better than spychan.

Post by willyw »

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 !
S
Suratka
Voice
Posts: 19
Joined: Sat Jun 25, 2016 4:56 pm
Contact:

Post by Suratka »

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.
User avatar
CrazyCat
Revered One
Posts: 1236
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Post by CrazyCat »

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: Select all

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 :)
Post Reply