diff options
| author | 2026-03-31 21:31:24 +0000 | |
|---|---|---|
| committer | 2026-03-31 15:40:01 -0600 | |
| commit | dbdeac0a78cc36cd03e54466be7adb3a0cfc73c9 (patch) | |
| tree | 3b3a551178c3f293ee30868e8bc377ed667b7610 | |
| parent | gitgud-chat (diff) | |
*-chat: Don't relay messages from nullbot or kh2i
| -rw-r--r-- | archivebot-chat.tcl | 9 | ||||
| -rw-r--r-- | down-the-tube-chat.tcl | 8 | ||||
| -rw-r--r-- | jseater-chat.tcl | 7 | ||||
| -rw-r--r-- | telegrab-chat.tcl | 7 |
4 files changed, 31 insertions, 0 deletions
diff --git a/archivebot-chat.tcl b/archivebot-chat.tcl index b664a3c..5b3d894 100644 --- a/archivebot-chat.tcl +++ b/archivebot-chat.tcl @@ -8,6 +8,15 @@ proc abc-privmsg {nick uhost hand chan text} { #if {([string match "*@archiveteam/Aramaki" $uhost] && ([string first ": Job" $text] != -1) && ([string first ": Sorry, I don't know anything about" $text != -1)) || ([string match "*@hackint/user/h2ibot" $uhost])} {} return 0 } + + if {([string match "*@hackint/user/nullbot" $uhost])} { + return 0 + } + + if {([string match "*@hackint/user/kh2i" $uhost])} { + return 0 + } + if {[string index $text 0] == "\001"} { return 0 } diff --git a/down-the-tube-chat.tcl b/down-the-tube-chat.tcl index 61fd490..8e9fa7b 100644 --- a/down-the-tube-chat.tcl +++ b/down-the-tube-chat.tcl @@ -7,6 +7,14 @@ proc dtt-privmsg {nick uhost hand chan text} { if {([string match "*@archiveteam/Aramaki" $uhost]) || ([string match "*@hackint/user/h2ibot" $uhost])} { return 0 } + if {([string match "*@hackint/user/nullbot" $uhost])} { + return 0 + } + + if {([string match "*@hackint/user/kh2i" $uhost])} { + return 0 + } + if {[string index $text 0] == "\001"} { return 0 } diff --git a/jseater-chat.tcl b/jseater-chat.tcl index eb0a1cd..27b4521 100644 --- a/jseater-chat.tcl +++ b/jseater-chat.tcl @@ -7,6 +7,13 @@ proc jseater-privmsg {nick uhost hand chan text} { if {([string match "*@hackint/user/h2ibot" $uhost])} { return 0 } + if {([string match "*@hackint/user/nullbot" $uhost])} { + return 0 + } + + if {([string match "*@hackint/user/kh2i" $uhost])} { + return 0 + } if {[string index $text 0] == "\001"} { return 0 } diff --git a/telegrab-chat.tcl b/telegrab-chat.tcl index f48ecad..2b300cf 100644 --- a/telegrab-chat.tcl +++ b/telegrab-chat.tcl @@ -7,6 +7,13 @@ proc telegrab-privmsg {nick uhost hand chan text} { if {([string match "*@archiveteam/Aramaki" $uhost]) || ([string match "*@hackint/user/h2ibot" $uhost])} { return 0 } + if {([string match "*@hackint/user/nullbot" $uhost])} { + return 0 + } + + if {([string match "*@hackint/user/kh2i" $uhost])} { + return 0 + } if {[string index $text 0] == "\001"} { return 0 } |
