aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firechannels.tcl19
1 files changed, 0 insertions, 19 deletions
diff --git a/firechannels.tcl b/firechannels.tcl
index 8826d10..9327bd5 100644
--- a/firechannels.tcl
+++ b/firechannels.tcl
@@ -32,25 +32,6 @@ proc firechansonjoin {nick uhost hand chan} {
putquick "INVITE $nick #pki"
putquick "INVITE $nick #reddark"
putquick "INVITE $nick #web3"
- putquick "NOTICE $nick :done! to subscribe to future channel changes please /msg $botnick chsub"
putquick "KICK $chan $nick :check your invites!"
newchanban $chan *!$uhost eggdrop "check your invites!" 1 sticky
}
-
-bind MSG * chsub chsub
-
-proc chsub {nick uhost hand text} {
- if {[getaccount $nick] == "*"} {
- putserv "NOTICE $nick :sorry $nick, you are not authenticated to NickServ"
- putserv "PRIVMSG #fire :\[chsub\] $nick!$uhost attempted to subscribe, but isn't auth'd with services"
- return 1
- }
- if {[getaccount $nick] == ""} {
- putserv "NOTICE $nick :sorry $nick, you are not authenticated to NickServ"
- putserv "PRIVMSG #fire :\[chsub\] $nick!$uhost attempted to subscribe, but isn't auth'd with services"
- return 1
- }
- putserv "NOTICE $nick :thanks! you've been added to the list"
- putserv "PRIVMSG #fire :\[chsub\] $nick!$uhost ([getaccount $nick]) subscribed to the channel changes list"
-
-}