Forráskód Böngészése

Delete BT.AntiTake.tcl

Florian 8 éve
szülő
commit
7eaa54b986
1 módosított fájl, 0 hozzáadás és 63 törlés
  1. 0 63
      BlackTools2.5.2/Modules/BT.AntiTake.tcl

+ 0 - 63
BlackTools2.5.2/Modules/BT.AntiTake.tcl

@@ -1,63 +0,0 @@
-#########################################################################
-##          BlackTools - The Ultimate Channel Control Script           ##
-##                    One TCL. One smart Eggdrop                       ##
-#########################################################################
-##########################   ANTITAKE TCL   #############################
-#########################################################################
-##						                       ##
-##   BlackTools  : http://blacktools.tclscripts.net	               ##
-##   Bugs report : http://www.tclscripts.net/	                       ##
-##   GitHub page : https://github.com/tclscripts/BlackToolS-TCL-script ##
-##   Online Help : irc://irc.undernet.org/tcl-help 	               ##
-##                 #TCL-HELP / UnderNet                                ##
-##                 You can ask in english or romanian                  ##
-##					                               ##
-#########################################################################
-
-proc dontdeoppublic {nick host hand chan args} {
-global black botnick
-	set dnick [lindex $args 1]
-	set handle [nick2hand $nick]
-if {[setting:get $chan dontdeop] } {
-if {[string match -nocase $nick $botnick]} {
-	return
-}
-if {![matchattr $handle $black(exceptflags) $chan]} {
-	putquick "MODE $chan -o $nick"
-	putquick "MODE $chan +o $dnick"
-	set getlang [string tolower [setting:get $chan lang]]
-if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" }
-	set text [black:color:set "" $black(say.$getlang.antitake.1)]
-	set text [join $text]
-	puthelp "NOTICE $nick :$text"
-		}
-	}
-}
- 
-proc dontoppublic {nick host hand chan args} {
-global black botnick
-	set onick [lindex $args 1]
-	set handle [nick2hand $nick]
-if {[setting:get $chan dontop]} {
-if {[string match -nocase $nick $botnick]} { 
-	return
-}
-if {[string match -nocase $onick $botnick]} {
-	return
-}
-if {![matchattr $handle $black(exceptflags) $chan]} {
-	putquick "MODE $chan -o $nick"
-	putquick "MODE $chan -o $onick"
-	set getlang [string tolower [setting:get $chan lang]]
-if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" }
-	set text [black:color:set "" $black(say.$getlang.antitake.2)]
-	set text [join $text]
-	puthelp "NOTICE $nick :$text"
-		}
-	}
-}
-
-##############
-#########################################################################
-##   END                                                               ##
-#########################################################################