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.

best channel relay tcl?

Old posts that have not been replied to for several years.
Locked
L
Life.A.Deth

best channel relay tcl?

Post by Life.A.Deth »

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
User avatar
ReaLz
Op
Posts: 121
Joined: Sat Oct 19, 2002 5:33 am
Location: Athens, Greece

Post by ReaLz »

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 »

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 »

sorry replied to rong posting

above
User avatar
ReaLz
Op
Posts: 121
Joined: Sat Oct 19, 2002 5:33 am
Location: Athens, Greece

Post by ReaLz »

hehe :P
«A fantastic spaghetti is a spaghetti that does not exist»
Locked