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.
Old posts that have not been replied to for several years.
L
Life.A.Deth
Post
by Life.A.Deth » Fri Jun 13, 2003 8:58 pm
I am looking for a good channel relay tcl..to link channels across differnet irc nets.
there are many out there but i have not been impressed so far.
anyone have suggestions on one for me to use....that you have used and tested??
thanks
Life After Death
ReaLz
Op
Posts: 121 Joined: Sat Oct 19, 2002 5:33 am
Location: Athens, Greece
Post
by ReaLz » Sun Jun 15, 2003 8:44 am
try searching the forum with the keyword "relay" and you will find many discutions,
also if you want some help to start making your own relay tcl..
Code: Select all
### from a caesar's post in the forum ###
set mainchan "#main"
set relaychan "#relay"
bind pubm - "*" relay_pubm
proc relay_pubm {nick host handle channel args} {
if {[strlwr $channel] != [strlwr $::mainchan]} {
return
}
putserv "PRIVMSG $::relaychan :($channel) $nick: $args"
}
«A fantastic spaghetti is a spaghetti that does not exist»
L
Life.A.Deth
Post
by Life.A.Deth » Sun Jun 15, 2003 9:33 am
Thanks for the reply realz,
the script works fine and dandy to detect the set variables. But it cant ban anything
this is the error when it tries to ban
Tcl error [ban_scripts]: can't read "uhost": no such variable
maby setting a diff type of ban mask will work??
L
Life.A.Deth
Post
by Life.A.Deth » Sun Jun 15, 2003 9:36 am
sorry replied to rong posting
above
ReaLz
Op
Posts: 121 Joined: Sat Oct 19, 2002 5:33 am
Location: Athens, Greece
Post
by ReaLz » Mon Jun 16, 2003 2:27 am
hehe
«A fantastic spaghetti is a spaghetti that does not exist»