set msgchan #yourchannel
bind link - * foo
bind disc - * foo
proc foo {args} {
set bot [lindex $args 0]
set via [lindex $args 1]
if {$via != ""} {set t "$bot has linked via $via"} {set t "$bot delinked"}
puthelp "privmsg $::msgchan :$t"
}
If I am translating correctly then you need this code (I found somewhere on the forums from memory).
Add [SOLVED] to the thread title if your issue has been. Search | FAQ | RTM
(11:18:46) (@|Arbiter): Smoke` has linked via Smoke@Kuzia.users.undernet.org
(11:42:00) (@|Arbiter): Dj_Livio has linked via ~Livio@LivioDj.users.undernet.org
The hub and all bots has PASSWORDS ON CONNECT so i don't think it is a takeover or some sh** like that.
Can someone EXPLAIN? ...
Thanks
LE: oh, and those users that he confuses are not in the userlist ... and are just banned for nasty behaviour
set msgchan #yourchannel
bind link - * foo
bind disc - * foo
proc foo {args} {
set bot [lindex $args 0]
set via [lindex $args 1]
if {$via != ""} {set t "$bot has linked via $via"} {set t "$bot delinked"}
puthelp "privmsg $::msgchan :$t"
}
If I am translating correctly then you need this code (I found somewhere on the forums from memory).