########################################################################### ## BlackTools - The Ultimate Channel Control Script ## ## One TCL. One smart Eggdrop ## ########################################################################### ############################ CORE TCL ################################# ########################################################################### ## ## ## BlackTools : http://blacktools.tclscripts.net ## ## Bugs report : http://www.tclscripts.net/ ## ## GitHub page : https://github.com/tclscripts/BlackToolS-TCL ## ## Online Help : irc://irc.undernet.org/tcl-help ## ## #TCL-HELP / UnderNet ## ## You can ask in english or romanian ## ## ## ########################################################################### ########################## Default protection flags ####################### set black(exceptflags) "nmo|HAagMOVSo" set black(accessflags) "nmo|MAO" set black(localflags) "-|MAOV" set black(glflags) "nmo" set black(tclconfig) "$black(backdir)/$black(tclname)" set black(tempdir) "$black(backdir)/BlackTools/temp" set black(banflag) "B" set black(current_modif) "1618162992" ############################### Information files ############################ set black(files_file) "$black(dirname)/BlackTools/FILES" if {![file exists $black(files_file)]} { file mkdir $black(files_file) } if {![file exists $black(backdir)]} { file mkdir $black(backdir) } set black(files_file) "$black(backdir)/BlackTools/FILES" set black(s_file) "$black(backdir)/BlackTools/FILES/$username.suspend.txt" set black(status_file) "$black(backdir)/BlackTools/FILES/$username.status.txt" set black(seen_file) "$black(backdir)/BlackTools/FILES/$username.seen_db.txt" set black(uptime_file) "$black(backdir)/BlackTools/FILES/$username.uptime.txt" set black(bans_file) "$black(backdir)/BlackTools/FILES/$username.bans.txt" set black(join_file) "$black(backdir)/BlackTools/FILES/$username.othermodule.txt" set black(extra_file) "$black(backdir)/BlackTools/FILES/$username.flags.txt" set black(add_file) "$black(backdir)/BlackTools/FILES/$username.extra.txt" set black(quote_file) "$black(backdir)/BlackTools/FILES/$username.quote.txt" set black(notes_file) "$black(backdir)/BlackTools/FILES/$username.notes.txt" set black(alias_file) "$black(backdir)/BlackTools/FILES/$username.aliases.txt" set black(voting_file) "$black(backdir)/BlackTools/FILES/$username.votes.txt" set black(temp_banner) "$black(backdir)/BlackTools/temp/banner" set black(temp_motd) "$black(backdir)/BlackTools/temp/motd" set black(files) "$black(s_file) $black(status_file) $black(seen_file) $black(uptime_file) $black(bans_file) $black(join_file) $black(extra_file) $black(add_file) $black(quote_file) $black(notes_file) $black(alias_file) $black(voting_file)" if {[file isdirectory "text"]} { if {[file exists "text/motd"] && [file exists "text/banner"]} { if {[file exists $black(temp_banner)] && [file exists $black(temp_motd)]} { file rename -force $black(temp_banner) "text/banner" file rename -force $black(temp_motd) "text/motd" file delete -force $black(temp_banner) file delete -force $black(temp_motd) } } } foreach f $black(files) { if {![file exists $f]} { set file [open $f w] close $file } } ########################### mychar ############################ proc blacktools:mychar {char hand} { global black set getchar [getuser $hand XTRA MYCHAR] if {[lsearch -exact $black(cmdchar) $char] < 0} { if {[string equal -nocase $getchar "none"]} { return 1 } } if {($getchar == "") && ([lsearch -exact $black(cmdchar) $char] > 0)} { return 2 } if {$getchar != ""} { if {[string equal -nocase $char $getchar]} { return 1 } return 0 } if {[lsearch -exact $black(cmdchar) $char] < 0} { return 0 } } ########################### define colors ##################### proc black:color {num hand text} { global black if {[validuser $hand]} { set getcolor [string tolower [getuser $hand XTRA OUTPUT_COLORS]] } else { set getcolor "" } if {$getcolor == ""} { set getcolor "[string tolower $black(default_colors)]" } set color1 [lindex $getcolor 0] set color2 [lindex $getcolor 1] set color3 [lindex $getcolor 2] set color4 [lindex $getcolor 3] set show_text "" foreach txt [split $text] { switch $num { 1 { lappend show_text [blacktools:getcolor $color2 $txt] } 2 { lappend show_text [blacktools:getcolor $color1 $txt] } 5 { lappend show_text [blacktools:getcolor $color3 $txt] } 4 { lappend show_text [blacktools:getcolor $color4 $txt] } 6 { if {[string match "<*>" $txt]} { lappend show_text [blacktools:getcolor $color4 $txt] } else { lappend show_text $txt } } } } return $show_text } proc blacktools:getcolor {color text} { global black if {![info exists black(color_inc)]} { set black(color_inc) 0 } switch $color { black { return "\00301$text\003" } bold { return "\002$text\002" } red { return "\00304$text\003" } blue { return "\00312$text\003" } green { return "\00303$text\003" } yellow { return "\00308$text\003" } orange { return "\00307$text\003" } cyan { return "\00310$text\003" } grey { return "\00314$text\003" } brown { return "\00305$text\003" } purple { return "\00306$text\003" } pink { return "\00313$text\003" } underline { return "\037$text\037" } } return $text } proc black:color:set {hand arg} { global black set text "" if {[validuser $hand]} { set getcolor [string tolower [getuser $hand XTRA OUTPUT_COLORS]] } else { set getcolor "" } if {$getcolor == ""} { set getcolor "[string tolower $black(default_colors)]" } set color1 [lindex $getcolor 0] set color2 [lindex $getcolor 1] set color3 [lindex $getcolor 2] set color4 [lindex $getcolor 3] foreach txt [split $arg] { if {[string match "<*>" $txt]} { lappend text [blacktools:getcolor $color4 $txt] } elseif {[string match *%chan%* $txt] || [string match *\001* $txt]} { set rpc [string map {"\001" ""} $txt] lappend text [blacktools:getcolor $color2 $rpc] } elseif {[string match *\002* $txt]} { set rpc [string map {"\002" ""} $txt] lappend text [blacktools:getcolor $color1 $rpc] } elseif {[string match *\005* $txt]} { set rpc [string map {"\005" ""} $txt] lappend text [blacktools:getcolor $color3 $rpc] } elseif {[string match *\004* $txt]} { set rpc [string map {"\004" ""} $txt] lappend text [blacktools:getcolor $color4 $rpc] } else { lappend text $txt } } return [join $text] } ########################### Extra Settings #################### set black(extra_str) { antipub-reason badhost-reason antinotice-reason antictcp-reason antibadword-reason antilongtext-reason antibadquitpart-reason antijoinflood-reason antispam-reason antispam-message antirepeat-reason anticolor-reason antibold-reason antiunderline-reason anticaps-reason nickflood-reason badrealname-reason badnick-reason badident-reason antichanflood-reason private-reason clonescan-reason dr-reason vr-reason n-reason expirebans b-reason id-reason mb-reason w-reason w-message spam-reason bw-reason bot-reason gag-reason stick-reason troll-reason k-reason black-reason next-reason antipub-bantime badhost-bantime antinotice-bantime antictcp-bantime antibadword-bantime antilongtext-bantime antibadquitpart-bantime antijoinflood-bantime antijoinflood-userset antispam-bantime antirepeat-bantime anticolor-bantime antibold-bantime antiunderline-bantime anticaps-bantime badrealname-bantime badnick-bantime badident-bantime antichanflood-bantime repetitivechars-bantime joinflood chanflood private-bantime antilongtextmax antirepeat-setting idlevoicemax clonescan-maxclone idleopmax idlehalfopmax kickcount xbantime xbanlevel limit-default nickflood-bantime clonescan-bantime backchan dr-bantime vr-bantime n-bantime b-bantime id-bantime spam-bantime bw-bantime mb-bantime badnick-bmethod badnick-banwait bot-bantime gag-bantime b-bantime stick-bantime d-bantime badchan-bantime badchan-bmethod badchan-reason joincount jointime lang next-bantime greet-method leave-method url antipub-warn antinotice-warn antictcp-warn antibadword-warn antilongtext-warn antirepeat-warn anticolor-warn repetitivechars-warn antibold-warn antiunderline-warn anticaps-warn antichanflood-warn nickflood-warn nickflood-repeat antipub-banmethod antinotice-banmethod antictcp-banmethod antibadword-banmethod antilongtext-banmethod antirepeat-banmethod anticolor-banmethod antibold-banmethod repetitivechars-banmethod antiunderline-banmethod anticaps-banmethod nickflood-banmethod antichanflood-banmethod banmethod antipub-banmask badhost-banmask antinotice-banmask antictcp-banmask antibadword-banmask antilongtext-banmask antibadquitpart-banmask n-banmask inviteban-banmask antijoinflood-banmask antispam-banmask antispam-banmask antirepeat-banmask anticolor-banmask antibold-banmask antiunderline-banmask anticaps-banmask nickflood-banmask badrealname-banmask badnick-banmask repetitivechars-banmask antichanflood-banmask private-banmask dr-banmask vr-banmask stick-banmask badident-banmask b-banmask id-banmask spam-banmask bw-banmask bot-banmask gag-banmask black-banmask next-banmask voiceonmsg-linenum voiceonmsg-idletime inviteban-reason repetitivechars-reason inviteban-bantime badchan-banwait general-bantime general-banmask badchan-scantime clonescan-scantime antispam-scantime idle-scantime anunt-showtime quote-showtime voiceme-showtime quitpartmsgflood-char repetitivechars-char noproxy-reason noproxy-bantime noproxy-banmask topwords-mask vote-mask } set black(extra_flag) { antipub antinotice antictcp antilongtext antibadword antispam spamjoinmessage antirepeat anticolor antibold antiunderline anticaps badrealname badnick badident repetitivechars antijoinflood antichanflood xtools antibadchan anunt limit clonescan seen autoop showbadchan showtroll autovoice leave topwords dontop dontdeop private silent quote note reportnick invisible forward showhandle showid showcount showtime showurl next voiceonmsg autotopic greet xonly nologged settingsaved idleop idlehalfop idlevoice vprotect oprotect hoprotect badquitpart quitpartcolor quitpartmsgflood badhost nickflood seenreply accessonly voiceme onlyonmode securemode strictsecured nextshortcmd inviteban quoteofday chanlink noproxy vote votegreet } set black(validcmds) "alias exempt login anunt link note q enable disable securemode cp troll badhost antispam badrealname badquitpart badident badnick badword unset greet leave topic vr dr n id spam bw mb black bl b stick ub sb banlist r man auto antipub private tcl h ignore idle version stats chat seen limit bt badchan us s info channels userlist chuser delhost addhost del delacc add unsuspend suspend delchan addchan die jump save restart rehash update nick msg omsg set mode cycle broadcast act say v ho o uptime status t k w ungag gag show clonescan topwords myset timer i badword next helped noidle skip vote" ########################## BackChan ############################ proc blacktools:backchan:verify {nick host hand chan} { global black botnick set isbackchan "" if {![botisop $chan]} { return } foreach c [channels] { set backchan [join [setting:get $c backchan]] if {[string equal -nocase $backchan $chan]} { set isbackchan $c } } set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$isbackchan != ""} { set gethost "$nick!$host" foreach b [blacktools:banlist:ban $isbackchan] { set cidr 0 set read_host [lindex [split $b] 3] set real_read_host [string map [list \[ {\[} \] {\]} \\ {\\}] $read_host] if {[regexp {[/]} $real_read_host]} { set read_ip [lindex [split $real_read_host @] 1] set theip [lindex [split $gethost @] 1] set cidr_ip [ipcidr $read_ip $theip] if {$cidr_ip == "1"} { set read_rest_ip [lindex [split $gethost @] 0] set read_theip [lindex [split $real_read_host @] 0] if {[string match -nocase $read_rest_ip $read_theip] || [string match -nocase $read_theip $read_rest_ip]} { set cidr 1 } } } if {[string match -nocase $real_read_host $gethost] || [string match -nocase $gethost $real_read_host] || $cidr == "1"} { set replace(%msg.1%) $gethost set replace(%chan%) $isbackchan set replace(%msg.2%) $read_host set text [black:color:set $botnick $black(say.$getlang.backchan.1)] putserv "NOTICE @$chan :[string map [array get replace] $text]" } } } } ########################## AutoInvite ########################## proc autoinvite:kick {nick host hand chan kicked reason} { global black set handle [nick2hand $kicked] if {[matchattr $handle $black(exceptflags) $chan]} { set getinvite [string tolower [getuser $handle XTRA AUTOINVITE]] if {($getinvite == "") || ($getinvite == "0")} { return } else { putserv "INVITE $kicked $chan" } } } ############################# Flood Protection ############################ proc msg:mass:unsilence {} { global black killignore *!*@* blacktools:tell:dcc antiflood.4 none } proc msg:flood:unset {type} { global black if {[info exists black($type)]} { unset black($type) } } proc msg:flood:protection {nick host hand arg} { global black botnick set user [nick2hand $nick] set chan1 $nick set number [scan $black(msg:flood) %\[^:\]] set timer [scan $black(msg:flood) %*\[^:\]:%s] set mass_number [scan $black(mass:msg:flood) %\[^:\]] set mass_timer [scan $black(mass:msg:flood) %*\[^:\]:%s] if {[matchattr $hand n]} { return } foreach tmr [utimers] { if {[string match "*black(antiflood:$host:prot)*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } foreach tmr [utimers] { if {[string match "*black(antiflood:prot)*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } if {![info exists black(antiflood:$host:prot)]} { set black(antiflood:$host:prot) 0 } if {![info exists black(antiflood:prot)]} { set black(antiflood:prot) 0 } set black(antiflood:$host:prot) [expr $black(antiflood:$host:prot) + 1] set black(antiflood:prot) [expr $black(antiflood:prot) + 1] utimer $timer [list msg:flood:unset antiflood:$host:prot] utimer $mass_timer [list msg:flood:unset antiflood:prot] if {$black(antiflood:prot) >= $mass_number} { newignore "*!*@*" $botnick "MASS FLOOD DETECTED" blacktools:tell:dcc antiflood.3 "\002\[BT\]\002 MASS MSG FLOOD PROTECTION" utimer $black(mass:msg:silence_time) [list msg:mass:unsilence] return } if {$black(antiflood:$host:prot) >= $number} { if {[validuser $user]} { newignore "*!$host" $botnick "\002\[BT\]\002 MSG FLOOD PROTECTION" $black(msg:flood:ignore_access) blacktools:tell $nick "PRIV" $hand "" $chan1 antiflood.1 "$black(msg:flood:ignore_access)" blacktools:tell:dcc antiflood.2 "$host \002\[BT\]\002 MSG FLOOD PROTECTION" } else { newignore "*!$host" $botnick "\002\[BT\]\002 MSG FLOOD PROTECTION" $black(msg:flood:ignore_others) blacktools:tell:dcc antiflood.2 "$host \002\[BT\]\002 MSG FLOOD PROTECTION" } } } proc notc:flood:protection {nick host hand text dest} { global black botnick set number [scan $black(notice:flood) %\[^:\]] set timer [scan $black(notice:flood) %*\[^:\]:%s] if {$nick == $black(chanserv) || [string equal -nocase $nick "NICKSERV"]} { return } if {![isbotnick $dest]} { return } foreach tmr [utimers] { if {[string match "*black(antiflood:$host:notc)*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } if {![info exists black(antiflood:$host:notc)]} { set black(antiflood:$host:notc) 0 } set black(antiflood:$host:notc) [expr $black(antiflood:$host:notc) + 1] utimer $timer [list msg:flood:unset antiflood:$host:notc] if {$black(antiflood:$host:notc) >= $number} { newignore "*!$host" $botnick "\002\[BT\]\002 NOTICE FLOOD PROTECTION" $black(notice:flood:notc_time) blacktools:tell:dcc antiflood.2 "$host \002\[BT\]\002 NOTICE FLOOD PROTECTION" } } ##################################### Time return ################################ proc time_return_minute {the_time} { global black set minutes "" if {[regexp {^[0-9]} $the_time] && ![regexp {[A-Za-z]} $the_time]} { return $the_time } if {![regexp {^[0-9](.*)[A-Za-z]} $the_time]} { return -1 } regsub -all {[A-Za-z]} $the_time "" number regsub -all {[0-9]} $the_time "" type switch [string tolower $type] { d { set minutes [expr $number * 1440] } m { set minutes "$number" } h { set minutes [expr $number * 60] } default { return -1 } } return "$minutes" } ############################## Check Timer ################################ if {![info exists bt_timers_running]} { timer 1 blacktools:timers:runtime set bt_timers_running 1 } #Secured Timer if {![info exists securedtimer_running]} { utimer 30 [list securemode:timer] set securedtimer_running 1 } ## #Vote check timer if {![info exists black(vote_expire)]} { set expire [blacktools:first_expire] if {$expire != 0} { set dif [expr $expire - [clock seconds]] if {$dif < 0} { utimer 1 [list blacktools:vote:expire] } else { utimer [expr $expire - [clock seconds]] [list blacktools:vote:expire] set black(vote_expire) $expire } } } ################################ check access ################################ proc check:access {nick host hand chan chan1 users} { global black if {[matchattr $users -|M $chan] && [matchattr $hand -|M $chan]} { return 1 } elseif {[matchattr $users -|M $chan] && [matchattr $hand -|A $chan]} { return 1 } elseif {[matchattr $users m|- $chan] && [matchattr $hand -|M $chan]} { return 1 } elseif {[matchattr $users m|- $chan] && [matchattr $hand m|- $chan] && (![matchattr $hand n|- $chan])} { return 1 } elseif {[matchattr $users m|- $chan] && [matchattr $hand -|A $chan]} { return 1 } elseif {[matchattr $users -|A $chan] && [matchattr $hand -|A $chan]} { return 1 } elseif {[matchattr $users n|- $chan] && [matchattr $hand -|A $chan]} { return 1 } elseif {[matchattr $users n|- $chan] && [matchattr $hand -|M $chan]} { return 1 } elseif {[matchattr $users n|- $chan] && [matchattr $hand n|- $chan]} { return 1 } elseif {[matchattr $users n|- $chan] && [matchattr $hand m|- $chan]} { return 1 } elseif {[matchattr $users o|- $chan] && [matchattr $hand o|- $chan] && (![matchattr $hand nm|- $chan])} { return 1 } elseif {[matchattr $users o|- $chan] && [matchattr $hand o|- $chan] && (![matchattr $hand m|- $chan])} { return 1 } elseif {[matchattr $users o|- $chan] && [matchattr $hand -|M $chan]} { return 1 } elseif {[matchattr $users m|- $chan] && [matchattr $hand o|- $chan] && (![matchattr $hand n|- $chan])} { return 1 } elseif {[matchattr $users n|- $chan] && [matchattr $hand o|- $chan] && (![matchattr $hand n|- $chan])} { return 1 } elseif {[matchattr $users m|- $chan] && [matchattr $hand o|- $chan] && (![matchattr $hand m|- $chan])} { return 1 } elseif {[matchattr $users n|- $chan] && [matchattr $hand o|- $chan] && (![matchattr $hand m|- $chan])} { return 1 } elseif {[matchattr $users o|- $chan] && [matchattr $hand -|A $chan]} { return 1 } return 0 } proc check:global {hand} { global black if {[matchattr $hand n]} { return [blacktools:getlevelname 1 $hand] } elseif {[matchattr $hand m]} { return [blacktools:getlevelname 2 $hand] } elseif {[matchattr $hand o]} { return [blacktools:getlevelname 8 $hand] } return 0 } ################################ Away set #################################### proc setaway {myaway} { global black set away [config:getinfo $black(tclconfig) "set black(default_away) \"*\""] set away [string map [list {\"} \" {\[} \[ {\]} \] {\?} \? {\\} \\] $away] if {$away == "" || $away == "i_have_no_away"} { return 0 } else { putserv "AWAY :" putserv "AWAY :$away" return 1 } } proc away:timer {} { global black set away_status [setaway "none"] } ############################### Config save ################################## proc config:save {f text_find text_replace} { global black set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set file_temp "temp.$timestamp" set found_it 0 if {![file exists $file_temp]} { set file [open $file_temp w] close $file } set file [open $f r] set size [file size $f] set data [split [read $file $size] \n] close $file set file2 [open $file_temp a] foreach line $data { if {[string match -nocase $text_find $line]} { set found_it 1 puts $file2 $text_replace } else { puts $file2 $line } } close $file2 if {$found_it == "1"} { file delete $f file rename $file_temp $f } else { file delete $file_temp return 0 } if {[file exists $file_temp]} { file delete $file_temp return 0 } } proc config:getinfo {f text_find} { set file [open $f r] while {[gets $file line] != -1} { if {[string match -nocase $text_find $line]} { set found_line $line continue } } close $file if {![info exists found_line]} { return 0 } else { regexp {\"((.*)\")(.*)} $found_line line set line [string map { "\"" ""} $line] return $line } } ############################### Ban Methods ################################## proc blacktools:banner:1 {nick bot chan host method linkchans} { global black botnick set num 0 set temp_num 0 set split_hand [split $bot ":"] set hand [string tolower [lindex $split_hand 0]] set said [lindex $split_hand 1] set banmask [return_mask [return_host_num $hand $chan $host] $host $nick] set finduser [finduser $banmask] if {$finduser != "*"} { if {[matchattr $finduser $black(exceptflags) $chan]} { return } } if {![botisop $chan] && ![setting:get $chan xonly]} { return } set getcount [setting:get $chan kickcount] set kcount [expr $getcount +1] setting:set $chan kickcount $kcount set xban 0 set num [blacktools:ban:find_id] set xonly [blacktools:getxonly $chan] set bantime [blacktools:getbantime $chan $hand] set show_reason [blacktools:getreason $chan $hand 0 $num] set reason [blacktools:getreason $chan $hand 1 $num] blacktools:ban:method $nick $chan $banmask $hand $show_reason $bantime $method $xban $xonly $reason $said $linkchans $num $host } proc blacktools:getxonly {chan} { global black if {[setting:get $chan xonly] && [onchan $black(chanserv) $chan]} { return 1 } return 0 } proc blacktools:getbantime {chan hand} { global black set bantime [setting:get $chan $hand-bantime] if {$bantime == ""} { set bantime [setting:get $chan general-bantime] if {$bantime == ""} { set bantime $black($hand:bantime) } } set checkbantime [time_return_minute $bantime] if {$checkbantime == "-1"} { set bantime [time_return_minute $black($hand:bantime)] } else { set bantime [time_return_minute $bantime] } return $bantime } proc blacktools:getreason {chan hand type id} { global black badchan if {[string match -nocase "*badchan,*" $hand]} { set split_hand [split $hand ","] } else { set split_hand [split $hand ":"] } set hand [lindex $split_hand 0] set bantime [setting:get $chan $hand-bantime] set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang [string tolower $black(default_lang)] } if {$bantime == ""} { set bantime [setting:get $chan general-bantime] } if {$bantime == ""} { set bantime $black($hand:bantime) } set checkbantime [time_return_minute $bantime] if {$checkbantime == "-1"} { set bantime [time_return_minute $black($hand:bantime)] } else { set bantime [time_return_minute $bantime] } set reason_time [expr [unixtime] + [expr $bantime * 60]] if {[string equal -nocase $hand "NEXT"]} { set getreason [setting:get $chan $hand-noidlereason] } else { set getreason [setting:get $chan $hand-reason] } if {$getreason == ""} { if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {[string equal -nocase $hand "NEXT"]} { set getreason $black(say.$getlang.$hand.5) } else { set getreason $black(say.$getlang.$hand.1) } } if {[string equal -nocase $hand "BADCHAN"]} { set banmask [lindex $split_hand 1] if {[string equal -nocase $badchan($banmask:$chan) $black(say.$getlang.$hand.5)]} { if {[setting:get $chan $hand-reason] != ""} { set getreason [join [setting:get $chan $hand-reason]] } else { set getreason $black(say.$getlang.badchan.5) } } else { if {[setting:get $chan $hand-reason] != ""} { set getreason [join [setting:get $chan $hand-reason]] } else { set getreason [join $badchan($banmask:$chan)] } } } set replace(%chan%) $chan set reason [string map [array get replace] $getreason] set thereason [encoding convertfrom utf-8 $reason] set getcount [setting:get $chan kickcount] set show_reason $thereason if {[setting:get $chan showid]} { set show_reason "$show_reason \[id: $id\]" } if {[setting:get $chan showtime] && $bantime != "0"} { set show_reason "$show_reason \[bantime: [return_reason_time [expr $reason_time - [unixtime]]]\]" } else { set show_reason "$show_reason" } if {[setting:get $chan showurl] && [setting:get $chan url] != "" && $bantime != "0"} { set show_reason "$show_reason - [join [setting:get $chan url]]" } if {[setting:get $chan showcount]} { set show_reason "$show_reason - $getcount -" } if {$type == "1"} { return $thereason } return $show_reason } proc blacktools:banner:2 {nick bot chan chan1 host link arg} { global black botnick set xban 0 set num 0 set temp_num 0 if {[string match -nocase "*badchan,*" $bot]} { set split_hand [split $bot ","] } else { set split_hand [split $bot ":"] } set hand [string tolower [lindex $split_hand 0]] if {[string equal -nocase $hand "CLONESCAN"]} { set banmask $host } else { set banmask [return_mask [return_host_num $hand $chan $host] $host $nick] } set finduser [finduser $banmask] set said [lindex $split_hand 1] if {$finduser != "*"} { if {[matchattr $finduser $black(exceptflags) $chan]} { return } } if {![botisop $chan] && ![setting:get $chan xonly]} { return } if {[setting:get $chan xonly]} { set xban 1 set getxtime [setting:get $chan xbantime] set getxlevel [setting:get $chan xbanlevel] if {$getxtime == ""} { set getxtime $black(chanserv:bantime) } if {$getxlevel == ""} { set getxlevel $black(chanserv:banlevel) } } set num [blacktools:ban:find_id] set getcount [setting:get $chan kickcount] set kcount [expr $getcount +1] setting:set $chan kickcount $kcount set getcount [setting:get $chan kickcount] set bantime [blacktools:getbantime $chan $hand] if {[string equal -nocase $hand "badchan"]} { set show_reason [blacktools:getreason $chan "$hand,$banmask" 0 $num] set thereason [blacktools:getreason $chan "$hand,$banmask" 1 $num] } else { set show_reason [blacktools:getreason $chan $hand 0 $num] set thereason [blacktools:getreason $chan $hand 1 $num] } if {[string equal -nocase $hand "CLONESCAN"]} { set clone [string map {"*!*@" ""} $banmask] set replace(%clone%) $clone set thereason [string map [array get replace] $thereason] set show_reason [string map [array get replace] $show_reason] } if {[string equal -nocase $hand "noproxy"]} { set replace(%isp%) [lindex $arg 0] set thereason [string map [array get replace] $thereason] set show_reason [string map [array get replace] $show_reason] } blacktools:addban $nick $banmask "$hand:$said" $chan $chan1 $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $num if {[onchan $black(chanserv) $chan] && $xban == "1"} { putserv "PRIVMSG $black(chanserv) :ban $chan $banmask $getxtime $getxlevel $show_reason" } if {$link == "0"} { set backchan [join [setting:get $chan backchan]] if {$backchan == ""} { return } if {!([validchan $backchan]) || !([onchan $botnick $backchan])} { return } if {[info exists black($chan:anounce)]} { return } if {![string equal -nocase $hand "CLONESCAN"] && ![string equal -nocase $hand "BADCHAN"]} { set black($chan:anounce) 1 } set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set thereason [blacktools:rem_comment_ban $thereason] if {$thereason == ""} { set thereason "N/A" } set bantime [time_return_minute $bantime] set bantime [expr $bantime * 60] set expire [return_time_2 $getlang $bantime] set replace(%banmask%) $banmask set replace(%bantime%) $expire set replace(%reason%) $show_reason set replace(%chan%) $chan set replace(%nick%) $botnick set text [black:color:set "" $black(say.$getlang.reportchan.1)] set reply [join $text] set reply [string map [array get replace] $reply] puthelp "PRIVMSG $backchan :$reply" if {[info exists black($chan:anounce)]} { utimer 5 [list unset black($chan:anounce)] } } } proc blacktools:banner:3 {mask hand chan chan1 reason bantime type sticky cmd nick banned prv} { global black botnick chanserv:ignore_remove set rcmd [lindex $cmd 0] set regex [lindex $cmd 1] set validhost 0 set found_handle 0 set finduser [finduser $mask] if {$finduser != "*"} { if {[matchattr $finduser $black(exceptflags) $chan]} { return } } foreach user [chanlist $chan] { if {[string equal -nocase $user $botnick]} { set uhost "$user![getchanhost $user $chan]" if {[string match -nocase $mask $uhost]} { set found_handle 1 break } } set uhost "$user![getchanhost $user $chan]" if {[string match -nocase $mask $uhost]} { set handle [nick2hand $user] if {$handle != "*"} { if {[matchattr $handle $black(exceptflags) $chan]} { set found_handle 1 break } } } } if {$found_handle == "1"} { return } if {([string match -nocase "*!*" $mask] && [string match -nocase "*@*" $mask]) || $regex == "REGEX"} { if {$regex != "REGEX"} { if {$type == "gl"} { set check_ban_exist [blacktools:ban:exists $mask "GLOBAL"] } else { set check_ban_exist [blacktools:ban:exists $mask $chan] } if {$check_ban_exist != ""} { if {$prv == "prv"} { blacktools:tell $nick $prv $hand $chan $chan1 gl.banexists "$mask $check_ban_exist" } else { blacktools:tell $nick $prv $hand $chan $chan1 gl.banexists "$mask $check_ban_exist" } return } } set validhost 1 set thereason [encoding convertto utf-8 $reason] set replace(%chan%) $chan set replace(%botnick%) $botnick set thereason [string map [array get replace] $thereason] set reason [string map [array get replace] $reason] set show_bantime $bantime set split_hand [split $hand ":"] set gethand [lindex $split_hand 0] set found 1 set bl 0 set xban 0 set num 0 set temp_num 0 set checkbantime [time_return_minute $bantime] if {$checkbantime == "-1"} { set bantime $bantime } else { set bantime [time_return_minute $bantime] } set getlang [string tolower [setting:get $chan lang]] set getmethod [getuser $gethand XTRA OUTPUT_TYPE] set userlang [string tolower [getuser $gethand XTRA OUTPUT_LANG]] if {$userlang == ""} { set userlang "[string tolower $black(default_lang)]" } if {$getmethod == ""} { set getmethod "0" } if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$type == ""} { if {![botisop $chan] && ![setting:get $chan xonly]} { if {$prv == "prv"} { blacktools:tell $nick $prv $hand $chan $chan1 gl.noop none } else { blacktools:tell $nick "" $hand $chan $chan1 gl.noop none } return } } if {$bantime == "-1"} { if {$prv == "prv"} { blacktools:tell $nick $prv $hand $chan $chan1 gl.instr "$rcmd" } else { blacktools:tell $nick "" $hand $chan $chan1 gl.instr "$rcmd" } return } set num [blacktools:ban:find_id] if {$rcmd == "b" && $type == "gl"} { if {$prv != "prv"} { set prv "" } if {$regex == "REGEX"} { blacktools:tell $nick $prv $hand $chan $chan1 b.13 $num } else { blacktools:tell $nick $prv $hand $chan $chan1 b.8 $num } } set current_time [unixtime] if {$bantime != "0"} { set reason_time [expr $current_time + [expr $bantime * 60]] } else { set reason_time 0 } set getcount [setting:get $chan kickcount] set kcount [expr $getcount +1] setting:set $chan kickcount $kcount set getcount [setting:get $chan kickcount] blacktools:banner3_stats $rcmd $chan $gethand $type if {$bantime == "0"} { set bl 1 } if {[string equal -nocase $regex "REGEX"]} { set bantype "REGEX" } else { set bantype "BAN" } if {$type == "gl"} { blacktools:addban:gl $nick $mask $hand "GLOBAL" $bantime $bantype "0" "1" $thereason $num blacktools:global:ban [channels] 0 } else { if {$sticky == "1"} { blacktools:addban $nick $mask $hand $chan $chan1 $bantime $bantype "1" "0" $thereason $found $cmd $type $banned $prv $num who:chan $chan } elseif {$sticky == "2"} { blacktools:addban $nick $mask $hand $chan $chan1 $bantime $bantype "2" "0" $thereason $found $cmd $type $banned $prv $num troll:add $banned $mask $chan who:chan $chan } elseif {$sticky == "3"} { blacktools:addban $nick $mask $hand $chan $chan1 $bantime $bantype "3" "0" $thereason $found $cmd $type $banned $prv $num who:chan $chan } else { blacktools:addban $nick $mask $hand $chan $chan1 $bantime $bantype "0" "0" $thereason $found $cmd $type $banned $prv $num who:chan $chan } } if {$type != "gl"} { set backchan [join [setting:get $chan backchan]] if {$backchan == ""} { return } if {!([validchan $backchan]) || !([onchan $botnick $backchan])} { return } set reason [blacktools:rem_comment_ban $thereason] set show_reason [blacktools:setreason $chan $reason "" 0 $getcount "0" $num] if {$reason == ""} { set reason "N/A" } set bantime [time_return_minute $bantime] set bantime [expr $bantime * 60] set expire [return_time_2 $getlang $bantime] set black($chan:anounce) 1 set replace(%banmask%) $mask if {$bantime != "0"} { set replace(%bantime%) $expire } else { set replace(%bantime%) "N/A" } set replace(%reason%) $show_reason set replace(%chan%) $chan set replace(%nick%) $gethand set text [black:color:set "" $black(say.$getlang.reportchan.1)] set reply [join $text] set reply [string map [array get replace] $reply] puthelp "PRIVMSG $backchan :$reply" } } if {$validhost == "0"} { if {$prv == "prv"} { blacktools:tell $nick "prv" $hand $chan $chan1 b.10 $mask } else { blacktools:tell $nick "" $hand $chan $chan1 b.10 $mask } } } proc blacktools:banner3_stats {cmd chan user type} { global black set text "" set counter 0 if {$type == "gl"} { set bantype "BANS(GLOBAL)" set counts [getuser $user XTRA BANS(GLOBAL)] if {$counts == ""} { set counts 0 } set counts [expr $counts + 1] setuser $user XTRA BANS(GLOBAL) $counts return } set cmds [getuser $user XTRA CMD_STATS($chan)] if {$cmds == ""} { setuser $user XTRA CMD_STATS($chan) $cmd:1 } else { set find_it [lsearch -glob $cmds "$cmd*"] set get_val [lindex $cmds $find_it] set split_val [split $get_val ":"] set getval [lindex $split_val 1] set counter [expr $getval + 1] set cmds [lreplace $cmds $find_it $find_it] if {[llength $cmds] > 0} { setuser $user XTRA CMD_STATS($chan) "$cmds $cmd:$counter" } else { setuser $user XTRA CMD_STATS($chan) $cmd:$counter } } set cmds_today [getuser $user XTRA CMD_STATS_TODAY($chan)] if {$cmds_today == ""} { setuser $user XTRA CMD_STATS_TODAY($chan) $cmd:1 } else { set find_it [lsearch -glob $cmds_today "$cmd*"] set get_val [lindex $cmds_today $find_it] set split_val [split $get_val ":"] set getval [lindex $split_val 1] set counter [expr $getval + 1] set cmds_today [lreplace $cmds_today $find_it $find_it] if {[llength $cmds_today] > 0} { setuser $user XTRA CMD_STATS_TODAY($chan) "$cmds_today $cmd:$counter" } else { setuser $user XTRA CMD_STATS_TODAY($chan) $cmd:$counter } } } proc blacktools:global:ban {channels num} { global black set chan [lindex $channels $num] who:chan $chan set incnum [expr $num + 1] if {[lindex $channels $incnum] != ""} { utimer 5 [list blacktools:global:ban $channels $incnum] } } proc blacktools:ban:method {nick chan host type reason bantime option xban xonly thereason said linkchans id truehost} { global black if {![info exists black(banmethod:memory)]} { set black(banmethod:memory) "" } switch [string tolower $type] { antipub { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(antipubmode) $black(antipubsecunde) "antipub" $thereason $said $linkchans $id $truehost } antinotice { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(antinoticemode) $black(antinoticesecunde) "antinotice" $thereason $said $linkchans $id $truehost } antictcp { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(antictcpmode) $black(antictcpsecunde) "antictcp" $thereason $said $linkchans $id $truehost } antibadword { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(badwordmode) $black(badwordsecunde) "antibadword" $thereason $said $linkchans $id $truehost } antilongtext { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(longmode) $black(longtimemode) "antilongtext" $thereason $said $linkchans $id $truehost } antirepeat { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(antirepeatmode) $black(antirepeatsecunde) "antirepeat" $thereason $said $linkchans $id $truehost } anticolor { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(anticolormode) $black(anticolorsecunde) "anticolor" $thereason $said $linkchans $id $truehost } antibold { set chanmode "0" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option "0" "0" "antibold" $thereason $said $linkchans $id $truehost } antiunderline { set chanmode "0" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option "0" "0" "antiunderline" $thereason $said $linkchans $id $truehost } anticaps { set chanmode "0" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option "0" "0" "anticaps" $thereason $said $linkchans $id $truehost } antichanflood { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(antichanflood:chanmode) $black(antichanflood:chanmodetime) "antichanflood" $thereason $said $linkchans $id $truehost } nickflood { set chanmode "1" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option $black(nickfloodmode) $black(nickfloodsecunde) "nickflood" $thereason $said $linkchans $id $truehost } repetitivechars { set chanmode "0" banmethod_action $nick $chan $host $type $reason $bantime $xban $xonly $chanmode $option "0" "0" "repetitivechars" $thereason $said $linkchans $id $truehost } } } proc banmethod_action {nick chan host type reason bantime xban xonly mode banmethod chanmode_type chanmode_time variable_name thereason said linkchans id truehost} { global black chanserv:ignore_remove if {$variable_name == "nickflood"} { set nick $said set said "" } set num 0 set temp_num 0 set get_count "" set time [unixtime] set getlang [string tolower [setting:get $chan lang]] if {![info exists black($variable_name:type_count:$host:$chan)]} { set black($variable_name:type_count:$host:$chan) $time:0 } else { set time_split [split $black($variable_name:type_count:$host:$chan) ":"] set get_time [lindex $time_split 0] set get_count [lindex $time_split 1] set get_count [expr $get_count + 1] set black($variable_name:type_count:$host:$chan) $time:$get_count } set time_split [split $black($variable_name:type_count:$host:$chan) ":"] set get_time [lindex $time_split 0] set get_count [lindex $time_split 1] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set warnmsg [setting:get $chan $variable_name-warn] if {$warnmsg == ""} { set warnmsg $black(say.$getlang.$variable_name.2) } set warnmsg [encoding convertfrom utf-8 $warnmsg] set replace(%chan%) $chan set replace(%nick%) $nick set warnmsg [string map [array get replace] $warnmsg] switch $banmethod { 1 { putserv "PRIVMSG $chan :\[WARN\] $nick - $warnmsg" banmethod_memory:remove $host $chan $variable_name } 2 { if {$xonly == "1"} { putserv "PRIVMSG $black(chanserv) :kick $chan $nick $warnmsg" return } putserv "KICK $chan $nick :\[WARN\] $warnmsg" banmethod_memory:remove $host $chan $variable_name } 3 { banmethod_action:ban $nick $chan $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $chan "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $id if {$linkchans != ""} { foreach c $linkchans { set num [blacktools:ban:find_id] set getcount [setting:get $c kickcount] set kcount [expr $getcount +1] setting:set $c kickcount $kcount set xban 0 set xonly [blacktools:getxonly $c] set bantime [blacktools:getbantime $c $variable_name] set reason [blacktools:getreason $c $variable_name 0 $num] set thereason [blacktools:getreason $c $variable_name 1 $num] banmethod_action:ban $nick $c $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $c "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $num } } if {$mode == "1"} { set current_modes [getchanmode $chan] set putmode "" set chanmodes [string map {"+" ""} [split [lindex $current_modes 0] ""]] foreach mod [split $chanmode_type ""] { if {[lsearch $chanmodes $mod] < 0} { lappend putmode $mod } } if {$putmode != ""} { putserv "MODE $chan +$putmode" -next ;utimer $chanmode_time [list putserv "MODE $chan -$putmode"] } } banmethod_memory:remove $host $chan $variable_name } 4 { if {$get_count == "0"} { putserv "PRIVMSG $chan :\[WARN\] $nick - $warnmsg" banmethod_memory:add $host } else { if {$xonly == "1"} { putserv "PRIVMSG $black(chanserv) :kick $chan $nick $warnmsg" banmethod_memory:remove $host $chan $variable_name return } if {[onchan $nick $chan]} { putserv "KICK $chan $nick :\[WARN\] $warnmsg" } banmethod_memory:remove $host $chan $variable_name } } 5 { if {$get_count == "0"} { putserv "PRIVMSG $chan :\[WARN\] $nick - $warnmsg" banmethod_memory:add $host } if {$get_count == "1"} { if {$xonly == "1"} { putserv "PRIVMSG $black(chanserv) :kick $chan $nick $warnmsg" return } putserv "KICK $chan $nick :\[WARN\] $warnmsg" } if {$get_count >= "2"} { banmethod_action:ban $nick $chan $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $chan "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $id if {$linkchans != ""} { foreach c $linkchans { set num [blacktools:ban:find_id] set getcount [setting:get $c kickcount] set kcount [expr $getcount +1] setting:set $c kickcount $kcount set xban 0 set xonly [blacktools:getxonly $c] set bantime [blacktools:getbantime $c $variable_name] set reason [blacktools:getreason $c $variable_name 0 $num] set thereason [blacktools:getreason $c $variable_name 1 $num] banmethod_action:ban $nick $c $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $c "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $num } } if {$mode == "1"} { set current_modes [getchanmode $chan] set putmode "" set chanmodes [string map {"+" ""} [split [lindex $current_modes 0] ""]] foreach mod [split $chanmode_type ""] { if {[lsearch $chanmodes $mod] < 0} { lappend putmode $mod } } if {$putmode != ""} { putserv "MODE $chan +$putmode" -next ;utimer $chanmode_time [list putserv "MODE $chan -$putmode"] } } banmethod_memory:remove $host $chan $variable_name } } 6 { if {$get_count == "0"} { if {$xonly == "1"} { putserv "PRIVMSG $black(chanserv) :kick $chan $nick $warnmsg" return } putserv "KICK $chan $nick :\[WARN\] $warnmsg" banmethod_memory:add $host } else { banmethod_action:ban $nick $chan $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $chan "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $id if {$linkchans != ""} { foreach c $linkchans { set num [blacktools:ban:find_id] set getcount [setting:get $c kickcount] set kcount [expr $getcount +1] setting:set $c kickcount $kcount set xban 0 set xonly [blacktools:getxonly $c] set bantime [blacktools:getbantime $c $variable_name] set reason [blacktools:getreason $c $variable_name 0 $num] set thereason [blacktools:getreason $c $variable_name 1 $num] banmethod_action:ban $nick $c $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $c "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $num } } if {$mode == "1"} { set current_modes [getchanmode $chan] set putmode "" set chanmodes [string map {"+" ""} [split [lindex $current_modes 0] ""]] foreach mod [split $chanmode_type ""] { if {[lsearch $chanmodes $mod] < 0} { lappend putmode $mod } } if {$putmode != ""} { putserv "MODE $chan +$putmode" -next ;utimer $chanmode_time [list putserv "MODE $chan -$putmode"] } } banmethod_memory:remove $host $chan $variable_name } } 7 { if {$get_count == "0"} { if {[onchan $nick $chan]} { set black($variable_name:type_count:$host:$chan) $time:0 putserv "PRIVMSG $chan :\[WARN\] $nick - $warnmsg" banmethod_memory:add $host } } else { banmethod_action:ban $nick $chan $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $chan "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $id if {$linkchans != ""} { foreach c $linkchans { set num [blacktools:ban:find_id] set getcount [setting:get $c kickcount] set kcount [expr $getcount +1] setting:set $c kickcount $kcount set xban 0 set xonly [blacktools:getxonly $c] set bantime [blacktools:getbantime $c $variable_name] set reason [blacktools:getreason $c $variable_name 0 $num] set thereason [blacktools:getreason $c $variable_name 1 $num] banmethod_action:ban $nick $c $host $reason $xban $xonly $bantime $truehost $thereason blacktools:addban $nick $host "$type:$said" $c "" $bantime "BAN" "0" "0" $thereason "0" "" "" "" 0 $num } } if {$mode == "1"} { set current_modes [getchanmode $chan] set putmode "" set chanmodes [string map {"+" ""} [split [lindex $current_modes 0] ""]] foreach mod [split $chanmode_type ""] { if {[lsearch $chanmodes $mod] < 0} { lappend putmode $mod } } if {$putmode != ""} { putserv "MODE $chan +$putmode" -next ;utimer $chanmode_time [list putserv "MODE $chan -$putmode"] } } banmethod_memory:remove $host $chan $variable_name } } } } proc banmethod_memory:add {host} { global black if {[info exists black(banmethod:memory)]} { if {[lsearch -exact [string tolower $black(banmethod:memory)] [string tolower $host]] < 0} { lappend black(banmethod:memory) $black(banmethod:memory) $host } } } proc banmethod_memory:remove {host chan variable_name} { global black if {[info exists black($variable_name:type_count:$host:$chan)]} { unset black($variable_name:type_count:$host:$chan) } } proc banmethod_memory:autoremove {} { global black if {[info exists black(banmethod:memory)]} { set split_out [split $black(banmethod:memory)] foreach chan [channels] { foreach host $split_out { if {[info exists black(antipub:type_count:$host:$chan)]} { unset black(antipub:type_count:$host:$chan) } if {[info exists black(antinotice:type_count:$host:$chan)]} { unset black(antinotice:type_count:$host:$chan) } if {[info exists black(antictcp:type_count:$host:$chan)]} { unset black(antictcp:type_count:$host:$chan) } if {[info exists black(antibadword:type_count:$host:$chan)]} { unset black(antibadword:type_count:$host:$chan) } if {[info exists black(antilongtext:type_count:$host:$chan)]} { unset black(antilongtext:type_count:$host:$chan) } if {[info exists black(antirepeat:type_count:$host:$chan)]} { unset black(antirepeat:type_count:$host:$chan) } if {[info exists black(anticolor:type_count:$host:$chan)]} { unset black(anticolor:type_count:$host:$chan) } if {[info exists black(antibold:type_count:$host:$chan)]} { unset black(antibold:type_count:$host:$chan) } if {[info exists black(antiunderline:type_count:$host:$chan)]} { unset black(antiunderline:type_count:$host:$chan) } if {[info exists black(anticaps:type_count:$host:$chan)]} { unset black(anticaps:type_count:$host:$chan) } if {[info exists black(antichanflood:type_count:$host:$chan)]} { unset black(antichanflood:type_count:$host:$chan) } if {[info exists black(nickflood:type_count:$host:$chan)]} { unset black(nickflood:type_count:$host:$chan) } if {[lsearch -exact [string tolower $black(banmethod:memory)] [string tolower $host]] > -1} { set position [lsearch -exact [string tolower $black(banmethod:memory)] [string tolower $host]] set black(banmethod:memory) [lreplace $black(banmethod:memory) $position $position] } } } } } proc checkischanban_ub {nick truehost chan whois} { global black set banlist [chanbans $chan] if {$nick == ""} { set search_host "$truehost" } else { set search_host "$nick!$truehost" } set foundban 0 foreach ban $banlist { set b [lindex $ban 0] if {([matchaddr $b $search_host] && $whois == "1") || [matchaddr $search_host $b]} { set foundban 1 break } } return $foundban } proc checkischanban {nick truehost chan} { global black set banlist [chanbans $chan] if {$nick == ""} { set search_host "$truehost" } else { set search_host "$nick!$truehost" } set foundban 0 foreach ban $banlist { set b [lindex $ban 0] if {[matchaddr $search_host $b]} { set foundban 1 break } } return $foundban } proc returnchanbans {host chan} { global black set bans "" set banlist [chanbans $chan] foreach ban $banlist { set b [lindex $ban 0] if {[matchaddr $host $b]} { lappend bans $b } } return $bans } proc returnchanbans_ub {host chan whois} { global black set bans "" set banlist [chanbans $chan] foreach ban $banlist { set b [lindex $ban 0] if {([matchaddr $b $host] && $whois == "1") || [matchaddr $host $b]} { lappend bans $b } } return $bans } proc banmethod_action:ban {nick chan host reason xban xonly bantime truehost thereason} { global black botnick chanserv:ignore_remove set reason [blacktools:rem_comment_ban $reason] if {$xonly == "1"} { set getxtime [setting:get $chan xbantime] set getxlevel [setting:get $chan xbanlevel] if {$getxlevel == ""} { set getxlevel $black(chanserv:banlevel)} if {$getxtime == ""} { set getxtime $black(chanserv:bantime) } putserv "PRIVMSG $black(chanserv) :ban $chan $host $getxtime $getxlevel $reason" } else { set alreadyban [checkischanban $nick $truehost $chan] if {$alreadyban == "0"} { putserv "MODE $chan +b $host" } putserv "KICK $chan $nick :$reason" foreach user [chanlist $chan] { set gethost "$user![getchanhost $user $chan]" set real_host [string map [list \[ {\[} \] {\]} \\ {\\}] $gethost] if {[string match -nocase $host $real_host] || [string match -nocase $real_host $host]} { putserv "KICK $chan $user :$reason" } } } set backchan [join [setting:get $chan backchan]] if {$backchan == ""} { return } if {!([validchan $backchan]) || !([onchan $botnick $backchan])} { return } if {[info exists black($chan:anounce)]} { return } set black($chan:anounce) 1 set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$reason == ""} { set reason "N/A" } set bantime [time_return_minute $bantime] set bantime [expr $bantime * 60] set expire [return_time_2 $getlang $bantime] set replace(%banmask%) $host set replace(%bantime%) $expire set replace(%reason%) $reason set replace(%chan%) $chan set replace(%nick%) $botnick set text [black:color:set "" $black(say.$getlang.reportchan.1)] set reply [join $text] set reply [string map [array get replace] $reply] puthelp "PRIVMSG $backchan :$reply" utimer 5 [list unset black($chan:anounce)] } ########################### User Protection ################################ proc protectpublic {nick host hand chan args} { global black set bans [lindex $args 1] chanserv:ignore_remove if {![botisop $chan] && ![setting:get $chan xonly]} { return } if {$bans == "*!*@*"} { putserv "MODE $chan -b $bans" return } if {[info exists black(logged)]} { set massban [check:massban $bans $chan] if {$massban == 1} { if {![info exists black(massban_start:$chan)]} { set black(massban_start:$chan) [unixtime] putquick "PRIVMSG $black(chanserv) :unban $chan $bans" utimer 60 [list massban:kick_unset $chan] } } } set list [userlist $black(exceptflags) $chan] foreach user $list { set hosts [getuser $user hosts] foreach host $hosts { if {[string match -nocase $bans $host] || [string match -nocase $host $bans]} { if {[onchan $black(chanserv) $chan] && ([setting:get $chan xtools] || [setting:get $chan xonly])} { putquick "PRIVMSG $black(chanserv) :unban $chan $bans" } else { putserv "MODE $chan -b $bans" } break } } } } proc massban:kick {nick host hand chan kicked reason} { global black if {[info exists black(massban_start:$chan)]} { if {[string equal -nocase $nick $black(chanserv)]} { set lang [setting:get $chan lang] if {$lang == ""} { set lang [string tolower $black(default_lang)] } set reason_k $black(say.$lang.b.9) regexp {\((.+)\) (.*)} $reason string user reason if {$user != ""} { putquick "PRIVMSG $black(chanserv) :suspend $chan $user $black(chanserv:suspend_time) $black(chanserv:suspend_level) $reason_k - [ctime $black(massban_start:$chan)]" massban:kick_unset $chan } } } } proc massban:kick_unset {chan} { global black if {[info exists black(massban_start:$chan)]} { unset black(massban_start:$chan) } } ########################### Text Wrapper ################################## proc wordwrap {str {len 100} {splitChr { }}} { set out [set cur {}]; set i 0 foreach word [split [set str][unset str] $splitChr] { if {[incr i [string len $word]]>$len} { lappend out [join $cur $splitChr] set cur [list $word] set i [string len $word] } { lappend cur $word } incr i } lappend out [join $cur $splitChr] } proc h:wrap {str {len 100} {splitChr {;}}} { set out [set cur {}]; set i 0 foreach word [split [set str][unset str] $splitChr] { if {[incr i [string len $word]]>$len} { lappend out [join $cur $splitChr] set cur [list $word] set i [string len $word] } { lappend cur $word } incr i } lappend out [concat [join $cur $splitChr]] } ##################################Auto User Expire ################################ proc user:autoexpire {minute hour day month year} { global black set counter 0 if {$black(user_expire_time) == "0"} { return } set max_time [expr 86400 * $black(user_expire_time)] foreach user [userlist] { if {[matchattr $user mno]} { continue } set laston [getuser $user laston] if {$laston == ""} { set laston [getuser $user XTRA created] } else { set laston [lindex $laston 0] } set user_time [expr [unixtime] - $laston] if {$user_time > $max_time} { set counter [expr $counter + 1] deluser $user notes:remove:ondelete $user alias:remove:ondelete $user s:remove:ondelete $user } } blacktools:tell:dcc userexpire.1 "$counter" } ################################# Message output ################################ proc blacktools:tell:h {nick host hand chan chan1 type arg} { global black botnick lastbind set split_hand [split $hand ":"] set gethand [lindex $split_hand 0] set replace(%botnick%) $botnick set split_lastbind [split $lastbind ""] set charbind [lindex $split_lastbind 0] set text "" if {[lsearch -exact $black(cmdchar) $charbind] < 0} { set charbind "" } if {[string equal $lastbind "*"]} { set charbind "" } if {[string equal -nocase "**" $lastbind]} { set charbind "$botnick " } if {[string equal -nocase "***" $lastbind]} { set charbind "$host" } set replace(%msg.1%) [lindex [split $arg] 0] set replace(%msg.2%) [lindex [split $arg] 1] set replace(%msg.3%) [lindex [split $arg] 2] set replace(%char%) $charbind set replace(%chan%) $chan set replace(%msg%) [join [lrange [split $arg] 0 end]] set replace(%msg.set%) [join [lrange [split $arg] 1 end]] set replace(%bind%) $lastbind if {[validuser $hand]} { set getlang [string tolower [getuser $hand XTRA OUTPUT_LANG]] set getmethod [getuser $hand XTRA OUTPUT_TYPE] } else { set getlang "" set getmethod "" } if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$getmethod == ""} { set getmethod $black(default_output) } set text [black:color:set $gethand $black(say.$getlang.$type)] set text [join $text] set reply [string map [array get replace] $text] foreach w [wordwrap $reply 440] { if {[string equal -nocase $host "prv"]} { putserv "PRIVMSG $nick :$w" return } elseif {[string equal -nocase [lindex $host 0] "dcc"]} { set idx [lindex $host 1] putidx $idx $w return } switch $getmethod { 0 { putserv "NOTICE $nick :$w" } 1 { putserv "PRIVMSG $chan1 :$w" } 2 { putserv "PRIVMSG $nick :$w" } } } } proc blacktools:tell_v2 {nick host hand chan chan1 type arg} { global black botnick lastbind set split_hand [split $hand ":"] set gethand [lindex $split_hand 0] set replace(%botnick%) $botnick set split_lastbind [split $lastbind ""] set charbind [lindex $split_lastbind 0] if {[lsearch -exact $black(cmdchar) $charbind] < 0} { set charbind "" } set firstchar [lindex $black(cmdchar) 0] if {[string equal $lastbind "*"]} { set charbind "" } if {[string equal -nocase "**" $lastbind]} { set charbind "$botnick " } if {[string equal -nocase "***" $lastbind]} { set split_host [split $host ":"] if {[lindex $split_host 1] == "chan"} { set host [lindex $split_host 1] set charbind [lindex $split_host 0] } else { set charbind "$host" } } if {$charbind == ""} { set charbind $firstchar if {[validuser $hand]} { set getchar [getuser $hand XTRA MYCHAR] if {$getchar != ""} { set charbind $getchar } } } set replace(%char%) $charbind set replace(%firstchar%) $firstchar set replace(%chan%) $chan set replace(%botnick%) $botnick set replace(%bind%) $lastbind set counter 0 foreach a $arg { incr counter set replace(%msg.$counter%) $a } if {[validuser $gethand]} { set getlang [string tolower [getuser $gethand XTRA OUTPUT_LANG]] set getmethod [getuser $gethand XTRA OUTPUT_TYPE] } else { set getlang "" set getmethod "" } if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$getmethod == ""} { set getmethod $black(default_output) } if {[string equal -nocase "man.showtip" $type]} { set len [llength $black(say.$getlang.$type)] set random [expr int(rand()*$len)] set gettext [lindex $black(say.$getlang.$type) $random] set text [black:color:set $gethand $gettext] } else { set text [black:color:set $gethand $black(say.$getlang.$type)] } set text [join $text] set reply [string map [array get replace] $text] set reply [string map [list {\"} \" {\[} \[ {\]} \] {\?} \? {\\} \\] $reply] if {[string equal -nocase $host "prv"]} { putserv "PRIVMSG $nick :$reply" return } elseif {[string equal -nocase [lindex $host 0] "dcc"]} { set idx [lindex $host 1] putidx $idx $reply return } elseif {[string equal -nocase $host "chan"]} { putserv "PRIVMSG $chan1 :$reply" return } switch $getmethod { 0 { putserv "NOTICE $nick :$reply" } 1 { if {[validchan $chan1]} { if {[onchan $botnick $chan1]} { putserv "PRIVMSG $chan1 :$reply" } else { putserv "NOTICE $nick :$reply" } } else { putserv "NOTICE $nick :$reply" } } 2 { putserv "PRIVMSG $nick :$reply" } } } proc blacktools:tell {nick host hand chan chan1 type arg} { global black botnick lastbind set split_hand [split $hand ":"] set gethand [lindex $split_hand 0] set replace(%botnick%) $botnick set split_lastbind [split $lastbind ""] set charbind [lindex $split_lastbind 0] if {[lsearch -exact $black(cmdchar) $charbind] < 0} { set charbind "" } set firstchar [lindex $black(cmdchar) 0] if {[string equal $lastbind "*"]} { set charbind "" } if {[string equal -nocase "**" $lastbind]} { set charbind "$botnick " } if {[string equal -nocase "***" $lastbind]} { set split_host [split $host ":"] if {[lindex $split_host 1] == "chan"} { set host [lindex $split_host 1] set charbind [lindex $split_host 0] } else { set charbind "$host" } } if {$charbind == ""} { set charbind $firstchar if {[validuser $hand]} { set getchar [getuser $hand XTRA MYCHAR] if {$getchar != ""} { set charbind $getchar } } } set replace(!%chan%) "%chan%" set replace(!%botnick%) "%botnick%" set replace(%char%) $charbind set replace(%firstchar%) $firstchar set replace(%chan%) $chan set replace(%msg%) [join [lrange [split $arg] 0 end]] set replace(%msg.set%) [join [lrange [split $arg] 1 end]] set replace(%msg.1%) [lindex [split $arg] 0] set replace(%msg.2%) [lindex [split $arg] 1] set replace(%msg.3%) [lindex [split $arg] 2] set replace(%msg.4%) [lindex [split $arg] 3] set replace(%msg.5%) [lrange [split $arg] 4 end] set replace(%msg.6%) [join [lrange [split $arg] 3 end]] set replace(%msg.7%) [lrange [split $arg] 2 end] set replace(%msg.8%) [join [lrange [split $arg] 1 end]] set replace(%msg.9%) [join [lrange [split $arg] 3 end]] set replace(%msg.10%) [join [lrange [split $arg] 4 end]] set replace(%msg.11%) [join [lrange [split $arg] 5 end]] set replace(%msg.12%) [lindex [split $arg] 4] set replace(%msg.13%) [lindex [split $arg] 5] set replace(%msg.14%) [join [lrange [split $arg] 6 end]] set replace(%msg.15%) [lindex [split $arg] 6] set replace(%msg.16%) [join [lrange [split $arg] 7 end]] set replace(%msg.17%) [lindex [split $arg] 7] set replace(%msg.18%) [join [lrange [split $arg] 2 end]] set replace(%msg.19%) [lindex [split $arg] 8] set replace(%msg.20%) [join [lrange [split $arg] 8 end]] set replace(%msg.21%) [lindex [split $arg] 9] set replace(%bind%) $lastbind if {[validuser $gethand]} { set getlang [string tolower [getuser $gethand XTRA OUTPUT_LANG]] set getmethod [getuser $gethand XTRA OUTPUT_TYPE] } else { set getlang "" set getmethod "" } if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$getmethod == ""} { set getmethod $black(default_output) } if {[string equal -nocase "man.showtip" $type]} { set len [llength $black(say.$getlang.$type)] set random [expr int(rand()*$len)] set gettext [lindex $black(say.$getlang.$type) $random] set text [black:color:set $gethand $gettext] } else { set text [black:color:set $gethand $black(say.$getlang.$type)] } set text [join $text] set reply [string map [array get replace] $text] set reply [string map [list {\"} \" {\[} \[ {\]} \] {\?} \? {\\} \\] $reply] if {[string equal -nocase $host "prv"]} { putserv "PRIVMSG $nick :$reply" return } elseif {[string equal -nocase [lindex $host 0] "dcc"]} { set idx [lindex $host 1] putidx $idx $reply return } elseif {[string equal -nocase $host "chan"]} { putserv "PRIVMSG $chan1 :$reply" return } switch $getmethod { 0 { putserv "NOTICE $nick :$reply" } 1 { if {[validchan $chan1]} { if {[onchan $botnick $chan1]} { putserv "PRIVMSG $chan1 :$reply" } else { putserv "NOTICE $nick :$reply" } } else { putserv "NOTICE $nick :$reply" } } 2 { putserv "PRIVMSG $nick :$reply" } } } proc blacktools:tell:cmd {nick host hand chan chan1 prv type reply} { global black set text "" if {[validuser $hand]} { set getcolor [string tolower [getuser $hand XTRA OUTPUT_COLORS]] } else { set getcolor "" } if {$getcolor == ""} { set getcolor "[string tolower $black(default_colors)]" } set color1 [lindex $getcolor 0] set color2 [lindex $getcolor 1] set color3 [lindex $getcolor 2] set color4 [lindex $getcolor 3] foreach txt $reply { if {[string match "*<*" $txt] || [string match "*>*" $txt]} { lappend text [blacktools:getcolor $color2 $txt] } elseif {[string match *%chan%* $txt] || [string match *\001* $txt]} { set rpc [string map {"\001" ""} $txt] lappend text [blacktools:getcolor $color2 $rpc] } elseif {[string match *\002* $txt]} { set rpc [string map {"\002" ""} $txt] lappend text [blacktools:getcolor $color1 $rpc] } elseif {[string match *\005* $txt]} { set rpc [string map {"\005" ""} $txt] lappend text [blacktools:getcolor $color3 $rpc] } elseif {[string match *\004* $txt]} { set rpc [string map {"\004" ""} $txt] lappend text [blacktools:getcolor $color4 $rpc] } else { lappend text $txt } } if {[lindex $host 0] == "dcc"} { set idx [lindex $host 1] putidx $idx [join $text] return } if {$prv == "1"} { putserv "PRIVMSG $nick :[join $text]" return } switch $type { 0 { putserv "NOTICE $nick :[join $text]" } 1 { putserv "PRIVMSG $chan1 :[join $text]" } 2 { putserv "PRIVMSG $nick :[join $text]" } } } proc blacktools:tell:dcc {type arg} { global black botnick set replace(%botnick%) $botnick set replace(%msg%) [join [lrange $arg 0 end]] set replace(%msg.set%) [join [lrange $arg 1 end]] set replace(%msg.1%) [lindex $arg 0] set replace(%msg.2%) [lindex $arg 1] set replace(%msg.3%) [lindex $arg 2] set replace(%msg.4%) [lindex $arg 3] set replace(%msg.5%) [lrange $arg 4 end] set replace(%msg.6%) [lrange $arg 3 end] set replace(%msg.7%) [lrange $arg 2 end] set replace(%msg.8%) [join [lrange $arg 1 end]] set replace(%msg.9%) [join [lrange $arg 3 end]] set replace(%msg.10%) [join [lrange $arg 4 end]] set getlang [string tolower $black(default_lang)] if {[info exists black(say.$getlang.$type)]} { set text [black:color:set "" $black(say.$getlang.$type)] set text [join $text] set reply [string map [array get replace] $text] putlog "$reply" } } ############################## Channel Key Need ################################## proc keyneed {chan type} { global black if {![validchan $chan]} { return } if {$type == "key"} { if {![regexp {k} [channel get $chan chanmode]]} { return } else { set the_key [lindex [split [channel get $chan chanmode]] 1] if {$the_key == ""} { return } putserv "JOIN $chan :$the_key" } } } ############################### Check valid nickname ############################# proc check:validnickname {from keyword arguments } { global nick config set lastnick $::lastnick set error [config:save $config "set nick \"*\"" "set nick \"$lastnick\""] unbind RAW - 432 check:validnickname } proc check:chanserv {from keyword arguments } { global black set black(notlogged) 1 unbind RAW - 401 check:chanserv } ########################### check expired notes ############################ proc notes:autoexpire {minute hour day month year} { global black set counter 0 set file [open $black(notes_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/notes_temp.$timestamp" set tempwrite [open $temp w] set counter 0 while {[gets $file line] != -1} { set read_type [lindex [split $line] 0] if {[string equal -nocase $read_type "INBOX"]} { set read_user [lindex [split $line] 4] foreach user [userlist] { if {[info exists black(notes:announce:$user)]} { unset black(notes:announce:$user) } if {[string equal -nocase $user $read_user]} { set tm [lindex [split $line] 5] set read_days [expr [expr [expr [expr [unixtime] - $tm] / 60]] / 1440] set expiretime [string tolower [getuser $user XTRA NOTE_EXPIRE]] if {$expiretime == ""} { set expiretime $black(notes:expiretime) } if {$read_days >= $expiretime} { continue } else { puts $tempwrite $line } } } } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(notes_file) } ########################### remove notes on delete ############################ proc notes:remove:ondelete {user} { global black set file [open $black(notes_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/notes_temp.$timestamp" set tempwrite [open $temp w] while {[gets $file line] != -1} { set read_user [lindex [split $line] 4] if {[string equal -nocase $user $read_user]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(notes_file) if {[info exists black(notes:announce:$user)]} { unset black(notes:announce:$user) } } ########################### remove alias on delete ############################ proc alias:remove:ondelete {user} { global black set file [open $black(alias_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/alias_temp.$timestamp" set tempwrite [open $temp w] while {[gets $file line] != -1} { set read_user [lindex [split $line] 0] if {[string equal -nocase $user $read_user]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(alias_file) } ######################## modif alias on change handle ######################### proc alias:change:update {user newuser} { global black set file [open $black(alias_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/alias_temp.$timestamp" set tempwrite [open $temp w] set arguments "" while {[gets $file line] != -1} { set read_user [lindex [split $line] 0] if {[string equal -nocase $user $read_user]} { set arguments [lrange [split $line] 1 end] continue } else { puts $tempwrite $line } } if {$arguments != ""} { puts $tempwrite "$newuser $arguments" } close $tempwrite close $file file rename -force $temp $black(alias_file) } ########################## Strip codes ########################### proc strip:all {str} { regsub -all -- {\003([0-9]{1,2}(,[0-9]{1,2})?)?|\017|\037|\002|\026|\006|\007} $str "" str return $str } ######################## Check add handle ####################### proc check:handle {user nick host hand chan chan1} { global black set last_user $user if {[validuser $user]} { return $user } set user [string range $user 0 31] if {[validuser $user]} { blacktools:tell $nick $host $hand $chan $chan1 add.17 "$last_user $user" return $user } set user [string range $user 0 11] if {[validuser $user]} { blacktools:tell $nick $host $hand $chan $chan1 add.17 "$last_user $user" return $user } set user [string range $user 0 8] if {[validuser $user]} { blacktools:tell $nick $host $hand $chan $chan1 add.17 "$last_user $user" return $user } } ######################## return time ########################### proc return_time_2 {getlang get_time} { global black set seconds [expr $get_time % 60] set days [expr $get_time/86400] set hours [expr [expr $get_time/3600] % 24]; set minutes [expr [expr $get_time / 60] % 60] if {[string length $hours] == "1"} { set hours "0$hours" } if {[string length $minutes] == "1"} { set minutes "0$minutes" } if {[string length $seconds] == "1"} { set seconds "0$seconds" } set output "$days $black(say.$getlang.timeout.4), $hours:$minutes:$seconds" if {$get_time <= 0} { return 0 } else { return $output } } proc return_reason_time {get_time} { global black set m "m" set d "d" set h "h" set s "s" set days [expr $get_time/86400] set hours [expr [expr $get_time/3600] % 24]; set minutes [expr [expr $get_time / 60] % 60] set seconds [expr $get_time % 60] if {$days == "0"} { if {$hours == "0"} { if {$seconds > 0} { return "$minutes$m:$seconds$s" } else { return "$minutes$m" } } else { if {$minutes > 0} { return "$hours$h:$minutes$m" } else { return "$hours$h" } } } else { if {$hours > 0} { return "$days$d:$hours$h" } else { return "$days$d" } } } proc return_time {getlang get_time} { global black if {$get_time >= 31536000} { set yearsfull [expr $get_time/31536000] set years [expr int($yearsfull)] set yearssub [expr 31536000*$years] set totalday [expr $get_time - $yearssub] } if {$get_time < 31536000} { set totalday $get_time set years 0 } if {$totalday >= 86400} { set daysfull [expr $totalday/86400] set days [expr int($daysfull)] set dayssub [expr 86400*$days] set totalhour [expr $totalday - $dayssub] } if {$totalday < 86400} { set totalhour $totalday set days 0 } if {$totalhour >= 3600} { set hoursfull [expr $totalhour/3600] set hours [expr int($hoursfull)] set hourssub [expr 3600*$hours] set totalmin [expr $totalhour - $hourssub] } if {$totalhour < 3600} { set totalmin $totalhour set hours 0 } if {$totalmin >= 60} { set minsfull [expr $totalmin/60] set mins [expr int($minsfull)] } if {$totalmin < 60} { set mins 0 } if {$years < 1} { set yearstext "" } elseif {$years == 1} { set yearstext "$years $black(say.$getlang.timeout.1) "} { set yearstext "$years $black(say.$getlang.timeout.2) " } if {$days < 1} { set daystext "" } elseif {$days == 1} { set daystext "$days $black(say.$getlang.timeout.3) " } else { set daystext "$days $black(say.$getlang.timeout.4) " } if {$hours < 1} { set hourstext "" } elseif {$hours == 1} { set hourstext "$hours $black(say.$getlang.timeout.5) " } else { set hourstext "$hours $black(say.$getlang.timeout.6) " } if {$mins < 1} { set minstext "" } elseif {$mins == 1} { set minstext "$mins $black(say.$getlang.timeout.7)" } else { set minstext "$mins $black(say.$getlang.timeout.8)" } set output $yearstext$daystext$hourstext$minstext if {$get_time < 60} { set output "$get_time $black(say.$getlang.timeout.9)" } return $output } ############################## login check ############################## proc black:login:yes {nick host hand text {dest ""}} { global black if {$nick == $black(chanserv)} { set lang [string tolower $black(default_lang)] if {[info exists black(logged)]} { return } set black(logged) 1 blacktools:tell:dcc login.5 "" } } proc black:login:no:failed {nick host hand text {dest ""}} { global black if {$nick == $black(chanserv)} { set black(notlogged:failed) 1 set black(notlogged) 1 blacktools:tell:dcc login.4 "" } } proc black:login:max {nick host hand text {dest ""}} { global black if {$nick == $black(chanserv)} { set black(notlogged:failed) 1 set black(notlogged) 1 blacktools:tell:dcc login.6 "" } } proc black:login:no:user {nick host hand text {dest ""}} { global black if {$nick == $black(chanserv)} { set black(notlogged:failed) 1 set black(notlogged) 1 blacktools:tell:dcc login.7 "" } } proc black:login:no:invalid {nick host hand text {dest ""}} { global black if {$nick == $black(chanserv)} { set black(notlogged:invalid) 1 set black(notlogged) 1 blacktools:tell:dcc login.8 "" } } proc timer:login:check {min hour day mon year} { global black if {$black(autologin) == "0"} { return } if {[info exists black(logged)]} { return } if {[info exists black(notlogged)] } { loginpublic my } } ############################ nickserv check ######################### proc black:nickserv:yes {nick host hand text {dest ""}} { global black if {[string equal -nocase $nick "NICKSERV"]} { putserv "PRIVMSG $black(nickserv:host) :RELEASE $nick $black(nickserv:pass)" putserv "PRIVMSG $black(nickserv:host) :IDENTIFY $black(nickserv:pass)" blacktools:tell:dcc login.9 "" } } proc black:nickserv:identify {nick host hand text {dest ""}} { global black if {[string equal -nocase $nick "NICKSERV"]} { set black(identified) 1 blacktools:tell:dcc login.10 "" } } proc black:nickserv:wrongpass {nick host hand text {dest ""}} { global black set lang [string tolower $black(default_lang)] if {[string equal -nocase $nick "NICKSERV"]} { set black(notidentified) $black(say.$lang.login.13) blacktools:tell:dcc login.11 "" } } proc black:nickserv:registered {} { global black if {[string equal -nocase $nick "NICKSERV"]} { set black(notidentified) $black(say.$lang.login.15) blacktools:tell:dcc login.16 "" } } proc black:nickserv:release {nick host hand chan newnick} { global black botnick if {$black(nickserv:identify) == "1"} { if {[isbotnick $nick] && [info exists black(identified)]} { putserv "PRIVMSG $black(nickserv:host) :RELEASE $nick $black(nickserv:pass)" } } } ########################## user suspend process check ############### proc s:remove:ondelete {user} { global black set file [open $black(s_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/s_temp.$timestamp" set tempwrite [open $temp w] while {[gets $file line] != -1} { set read_user [lindex [split $line] 1] if {[string equal -nocase $user $read_user]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(s_file) } proc s:status {} { global black set entry_exists 0 set file [open $black(s_file) "r"] while {[gets $file line] != -1} { set entry_exists 1 } close $file return $entry_exists } proc s:process:timer {} { global black set entry_exists 0 set file [open $black(s_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/s_temp.$timestamp" set tempwrite [open $temp w] while {[gets $file line] != -1} { set entry_exists 1 set tm [lindex [split $line] 2] set suspend_chan [lindex [split $line] 0] set suspend_user [lindex [split $line] 1] if {[expr $tm - [unixtime]] < 0} { suspend:delete:action $suspend_user $suspend_chan continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(s_file) if {$entry_exists == "0"} { if {[info exists black(s:timer_start)]} { unset black(s:timer_start) } } } proc suspend:delete:action {user chan} { global black username set flags "-|-q" set gl_flags "-q" if {[string equal -nocase $chan "GLOBAL"]} { chattr $user $gl_flags } else { chattr $user $flags $chan } } proc check:if:bind {bind type} { set found_it 0 set binds [binds raw] foreach b $binds { if {$bind == [lindex $b 4]} { unbind RAW - $type $bind } } } ############################# no option ######################## proc check_option {nick host hand chan chan1 type type1 cmd} { global black if {$cmd == ""} { set cmd "set" } if {$type == ""} { switch $type1 { 0 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $cmd } 1 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick $cmd } 2 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv $cmd } } return 0 } return 1 } ########################### first join ######################## proc first:join {nick host hand chan} { global black botnick if {[string equal -nocase $nick $botnick]} { if {![info exists black(firstjoin:$chan)]} { blacktools:timers:load $chan set black(firstjoin:$chan) 1 } if {![info exists black(firstjoin)]} { blacktools:timers:load "none" set black(firstjoin) 1 } blacktools:settings:save $chan 0 } } ########################### join count ######################## proc join:count {nick host hand chan} { global black botnick if {[string equal -nocase $nick $botnick]} { if {[info exists black(abuse:$chan)]} { unset black(abuse:$chan) } if {[info exists black(abuse:count:$chan)]} { unset black(abuse:count:$chan) } } set jointime [setting:get $chan jointime] if {$jointime == ""} { setting:set $chan jointime [unixtime] } set current [setting:get $chan joincount] if {$current == ""} { set current 0 } set current [expr $current + 1] setting:set $chan joincount $current } ######################## Chan Flood Protection ####################### proc flood:join:protection {nick host hand chan} { global black if {[setting:get $chan greet] || [setting:get $chan antijoinflood] || [setting:get $chan antispam]} { set joinflood [setting:get $chan joinflood] if {$joinflood == ""} {set joinflood $black(joinflood:protect)} set number [scan $joinflood %\[^:\]] set time [scan $joinflood %*\[^:\]:%s] foreach tmr [utimers] { if {[string match "*black(countflood:join:$chan)*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } if {[info exists black(turnOnFlood:$chan)]} { return } if {![info exists black(countflood:join:$chan)]} { set black(countflood:join:$chan) 0 } set black(countflood:join:$chan) [expr $black(countflood:join:$chan) + 1] utimer $time [list remove:flood:join $chan] if {$black(countflood:join:$chan) >= $number} { set black(turnOnFlood:$chan) 1 utimer 60 [list unset black(turnOnFlood:$chan)] return } } } proc remove:flood:host {host chan} { global black if {[info exists black(countflood:$host:$chan)]} { unset black(countflood:$host:$chan) } } proc remove:flood:join {chan} { global black if {[info exists black(countflood:join:$chan)]} { unset black(countflood:join:$chan) } } proc remove:seenflood:host {the_host chan} { global black if {[info exists black(flood:$the_host:$chan)]} { unset black(flood:$the_host:$chan) } } ########################## max uptime ###################### proc maxuptime {min hour day mon year} { global black uptime {server-online} if {![file exists $black(uptime_file)]} { return } set online [expr [unixtime] - ${server-online}] set read_uptime [expr [unixtime] - $uptime] set file [open $black(uptime_file) "r"] set data [read -nonewline $file] close $file set get_uptime 0 set get_online 0 set get_uptime [lindex $data 0] set get_online [lindex $data 1] if {$read_uptime > $get_uptime} { set add_uptime $read_uptime } else { set add_uptime $get_uptime } if {${server-online} != "0"} { if {$online > $get_online} { set add_online $online } else { set add_online $get_online } } else { set add_online $get_online } set file [open $black(uptime_file) "w"] puts $file "$add_uptime $add_online" close $file } ############################## VERSION ################################ proc blackreply {nick host hand dest key text} { global ctcp-version black if {[string equal -nocase $key "version"]} { set {ctcp-version} "Using \002$black(name) $black(vers)\002 coded by \002$black(author)\002 ($black(site))" } } ########################### Return Mask ############################## proc return_mask {type uhost user} { global black set ident [lindex [split $uhost "@"] 0] set host [lindex [split $uhost @] 1] switch $type { 1 { return "*!*@$host" } 2 { return "*!$ident@$host" } 3 { return "$user!$ident@$host" } 4 { return "$user!*@*" } 5 { return "*!$ident@*" } } } ########################### Return USERHOST Mask #################### proc ub:get:host {from keyword arguments} { global black set hosts [lindex [split $arguments] 1] set hostname [lindex [split $hosts "="] 1] regsub {^[-+]} $hostname "" mask set nickname [lindex [split $hosts "="] 0] regsub {^:} $nickname "" nick set fullmask "$nick!$mask" set user $::uuser set mask $fullmask set nick $::unick set hand $::uhand set host $::uhost set chan $::uchan set chan1 $::uchan1 set type $::utype set gl $::ugl set cmd $::ucmd set link $::ulink set prv $::prv if {$hosts == ":"} { set mask $user } set vhost [lindex [split $mask @] 1] if {[string equal -nocase $gl "1"] && [matchattr $hand nm]} { blacktools:dns:ub $user $mask $nick $hand $host $vhost $chan $chan1 $type "1" $cmd "1" "" "" $prv } elseif {[string equal -nocase $link "1"] && [matchattr $hand nm]} { blacktools:dns:ub $user $mask $nick $hand $host $vhost $chan $chan1 $type "" "ub" "1" "1" "" $prv } else { blacktools:dns:ub $user $mask $nick $hand $host $vhost $chan $chan1 $type "" $cmd "1" "" "" $prv } check:if:bind "ub:get:host" "302" } proc sb:get:host {from keyword arguments} { global black set hosts [lindex [split $arguments] 1] set hostname [lindex [split $hosts "="] 1] regsub {^[-+]} $hostname "" mask set nickname [lindex [split $hosts "="] 0] regsub {^:} $nickname "" nick set fullmask "$nick!$mask" set what $::swhat set bhost $fullmask set nick $::snick set hand $::shand set host $::shost set chan $::schan set chan1 $::schan1 set type $::stype set cmd $::scmd if {$hosts == ":"} { set bhost "-" } sb:process $bhost $what $nick $hand $host $chan $chan1 $type "sb" "1" check:if:bind "sb:get:host" "302" } proc userhost:get:host {from keyword arguments} { global black set hosts [lindex [split $arguments] 1] set hostname [lindex [split $hosts "="] 1] regsub {^[-+]} $hostname "" mask set nick $::bnick set txt $::getnick set hand $::userhand set host $::userhost set chan $::userchan set chan1 $::userchan1 set type $::usertype set bantime $::userbantime set cmd $::usercmd set rs $::userrs set gl $::usergl if {$hosts == ":"} { blacktools:tell $nick $host $hand $chan $chan1 gl.usernotexist $txt } else { bancmds:process $txt $mask $nick $hand $host $chan $chan1 $type $bantime $cmd $rs $gl } check:if:bind "userhost:get:host" "302" } proc userhost:act {why nick hand host chan chan1 type bantime cmd rs gl} { global black set split_hand [split $hand ":"] set rcmd [lindex $cmd 0] set regex [lindex $cmd 1] set gethand [lindex $split_hand 0] set cmd_status [btcmd:status $chan $gethand $rcmd 0] set yes_whois 0 set why [strip:all $why] if {$cmd_status == "1"} { return } if {[matchattr $hand q]} { blacktools:tell $nick $host $hand $chan $chan1 gl.glsuspend none return } if {[matchattr $hand -|q $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.suspend none return } if {$why == ""} { switch $type { 0 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $rcmd } 1 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick $rcmd } 2 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv $rcmd } } return 0 } if {[validchan $chan] && ![onchan $why $chan] && $gl != "1"} { set yes_whois 1 } if {$gl == "1"} { set yes_whois 1 } if {$regex != "REGEX"} { if {$rcmd != "troll"} { if {(![regexp {\*} $why]) && $yes_whois == "1"} { putserv "USERHOST :$why" bind RAW - 302 userhost:get:host set ::bnick $nick set ::getnick $why set ::userhand $hand set ::userhost $host set ::userchan $chan set ::userchan1 $chan1 set ::usertype $type set ::userbantime $bantime set ::usercmd $cmd set ::userrs $rs set ::usergl $gl return } } } bancmds:process $why $why $nick $hand $host $chan $chan1 $type $bantime $cmd $rs $gl } ########################### bancmds return host ####################### proc return_host_num {cmd chan host} { global black if {$cmd == "b:gl"} { return [get:banmask "$cmd" $chan] } switch [string tolower $cmd] { topwords { set mask [get:mask "topwords" $chan] set check_webchat [check:webchat $host] if {$mask == "1" && $check_webchat == "1"} { return "5" } else { return $mask } } hello { set mask [get:mask "hello" $chan] set check_webchat [check:webchat $host] if {$mask == "1" && $check_webchat == "1"} { return "5" } else { return $mask } } mb { return "5" } clonescan { return 1 } default { set mask [get:banmask $cmd $chan] set check_webchat [check:webchat $host] if {$mask == "1" && $check_webchat == "1"} { return "5" } else { return $mask } } } } proc check:webchat {host} { global black set webchat_found 0 set host "*!$host" foreach h $black(webchat_hosts) { if {[string match -nocase $h $host]} { set webchat_found 1 break } } return $webchat_found } ########################## bancmds process ########################### proc bancmds:process {user mask nick hand host chan chan1 type bantime cmd rs gl} { global black botnick set rcmd [lindex $cmd 0] set regex [lindex $cmd 1] set split_hand [split $hand ":"] set gethand [lindex $split_hand 0] set comment "" set cmd_status [btcmd:status $chan $gethand $rcmd 0] if {$cmd_status == "1"} { return } set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set show_user $user set handle [nick2hand $user] if {[matchattr $gethand q]} { blacktools:tell $nick $host $hand $chan $chan1 gl.glsuspend none return } if {[matchattr $gethand -|q $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.suspend none return } if {![validchan $chan] && $gl == "0"} { blacktools:tell $nick $host $hand $chan $chan1 gl.novalidchan none return } if {$gl != "1"} { set massban [check:massban $mask $chan] if {$massban == "1"} { blacktools:tell $nick $host $hand $chan $chan1 b.9 none return } } if {[isbotnick $user]} { return } if {$gl != "1"} { if {![onchan $botnick $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.notonchan none return } } if {$gl != "1"} { if {[matchattr $handle $black(exceptflags) $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.noban none return } } else { if {[matchattr $handle $black(glflags)]} { blacktools:tell $nick $host $hand $chan $chan1 gl.noban none return } } set reason_cmds "b stick black mb" if {$rs != "" && [lsearch -exact $reason_cmds $rcmd] > -1} { set getreason $rs } else { if {$rs != ""} { if {[regexp {(-comment)} $rs]} { set split_it [wsplit $rs "-comment"] } elseif {[regexp {(-com)} $rs]} { set split_it [wsplit $rs "-com"] } elseif {[regexp {(-c)} $rs]} { set split_it [wsplit $rs "-c"] } set comment [concat [lindex $split_it 1]] } set getreason [setting:get $chan $rcmd-reason] } if {$getreason == ""} { set getreason $black(say.$getlang.$rcmd.5) if {$rcmd == "b"} { set len [llength $getreason] set random [expr int(rand()*$len)] set getreason [lindex $getreason $random] } } if {$comment != ""} { set getreason "$getreason -c $comment" } if {![string equal -nocase "$rcmd" "black"] && ![string equal -nocase "$rcmd" "bl"] && ![string equal -nocase "$rcmd" "troll"] && ![string equal -nocase "$rcmd" "b"]} { set getbantime [setting:get $chan $rcmd-bantime] } else { set getbantime 0 } if {[string equal -nocase "$rcmd" "b"] || [string equal -nocase "$rcmd" "stick"]} { if {[time_return_minute $bantime] == [time_return_minute $black($rcmd:bantime)]} { set setbantime [time_return_minute [setting:get $chan $rcmd-bantime]] if {$setbantime == "-1"} { set getbantime $bantime } else { set getbantime $setbantime } } else { set getbantime "" } } if {$getbantime == ""} { set getbantime $bantime } if {$rcmd == "troll"} { set getbantime $bantime } if {$gl != "1"} { if {![onchan $user $chan] && $rcmd == "troll"} { blacktools:tell $nick $host $hand $chan $chan1 gl.usernotonchan $show_user return } if {[regexp {\*} $mask] && $rcmd == "mb"} { switch $type { 0 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $rcmd } 1 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick $rcmd } 2 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv $rcmd } } return } } if {$gl != "1"} { if {[onchan $user $chan]} { set mask [return_mask [return_host_num $rcmd $chan [getchanhost $user $chan]] [getchanhost $user $chan] $user] } elseif {![regexp {\*} $mask] && $regex != "REGEX"} { set mask [return_mask [return_host_num $rcmd $chan $mask] $mask $user] } } else { if {![regexp {\*} $mask] && $regex != "REGEX"} { set mask [return_mask [return_host_num "$rcmd:gl" $chan $mask] $mask $user] } } if {$gl != "1"} { set list [userlist $black(exceptflags) $chan] foreach u $list { set hosts [getuser $u hosts] foreach h $hosts { if {[string match -nocase "$mask" $h]} { blacktools:tell $nick $host $hand $chan $chan1 gl.noban none return } } } if {$rcmd == "stick"} { blacktools:banner:3 $mask $hand $chan $chan1 $getreason $getbantime BANS($chan) "1" $cmd $nick $user $host return } if {$rcmd == "troll"} { blacktools:banner:3 $mask $hand $chan $chan1 $getreason $getbantime BANS($chan) "2" $cmd $nick $user $host return } if {$rcmd == "bot" && [onchan $user $chan]} { set getreason "$getreason - $black(say.$getlang.$rcmd.8)" blacktools:banner:3 $mask $hand $chan $chan1 $getreason $getbantime BANS($chan) "3" $cmd $nick $user $host return } blacktools:banner:3 $mask $hand $chan $chan1 $getreason $getbantime BANS($chan) "" $cmd $nick $user $host } elseif {$gl == "2"} { blacktools:banner:3 $mask $hand $chan $chan1 $getreason $getbantime "link" "" $cmd $nick $user $host } elseif {$gl == "1"} { blacktools:banner:3 $mask $hand $chan $chan1 $getreason $getbantime "gl" "" $cmd $nick $user $host } } proc check:massban {host chan} { global black set totuser [llength [chanlist $chan]] set counter 0 foreach user [chanlist $chan] { set gethost "$user![getchanhost $user $chan]" if {[string match -nocase $host $gethost]} { set counter [expr $counter + 1] } } if {[expr 100 * $counter / $totuser] > $black(chanserv:percent_ban)} { return 1 } return 0 } ################################## Join Auto Ban ############################# proc reason:details:module {nick host hand chan} { global botnick black if {![validchan $chan]} { return } who:nick $nick $chan } proc blacktools:ban:chanexempt {mask dns chan} { global black set check_it [matchexempt $mask $chan] if {$check_it == "1"} { return $check_it } else { set check_it [matchexempt $mask] } if {$check_it == "1"} { return $check_it } set check_it [matchexempt $dns $chan] if {$check_it == "1"} { return $check_it } else { set check_it [matchexempt $dns] } if {$check_it == "1"} { return $check_it } return $check_it } proc blacktools:ban:exempt {mask} { global black set check_it [matchexempt $mask] return $check_it } ############################ Ban Procedure ######################### proc blacktools:link_ban {chanlink first b nick hand char chan chan1 type return_time cmd reason num} { global black set first_chan [lindex $chanlink $first] set counter [expr $first + 1] if {$first_chan != ""} { userhost:act $b $nick "$hand" $char $first_chan $chan1 $type $return_time $cmd $reason "2" } if {[lindex $chanlink $counter] != ""} { utimer 5 [list blacktools:link_ban [link:chan:get $chan] $counter $b $nick $hand $char $chan $chan1 $type $return_time $cmd $reason 2] } } proc blacktools:link_ban2 {chanlink first} { global black set first_chan [lindex $chanlink $first] set counter [expr $first + 1] if {$first_chan != ""} { who:chan $first_chan } if {[lindex $chanlink $counter] != ""} { utimer 5 [list blacktools:link_ban2 $chanlink $counter] } } #http://wiki.tcl.tk/989 proc wsplit {string sep} { set first [string first $sep $string] if {$first == -1} { return [list $string] } else { set l [string length $sep] set left [string range $string 0 [expr {$first-1}]] set right [string range $string [expr {$first+$l}] end] return [concat [list $left] [wsplit $right $sep]] } } ### proc blacktools:regex_escape {text} { global black regsub -all {\W} $text {\\&} text return "$text" } ### proc who:nick {nick chan} { global black putquick "WHO :$nick" set ::who_nick $nick set ::who_nick_chan $chan bind RAW - 352 get:nicklist bind RAW - 315 end:nicklist } proc get:nicklist {from keyword arguments} { global black set who_nick $::who_nick set chan $::who_nick_chan set ident [lindex [split $arguments] 2] set host [lindex [split $arguments] 3] set nick [lindex [split $arguments] 5] set realname [strip:all [lrange [split $arguments] 8 end]] set uhost "$nick!$ident@$host" if {[string equal -nocase $who_nick $nick]} { set vhost [lindex [split $uhost @] 1] blacktools:dns:join $nick $uhost $vhost "" $chan $realname } } proc end:nicklist {from keyword arguments} { global black if {[info exists ::who_nick_chan]} { unset ::who_nick_chan } if {[info exists ::who_nick]} { unset ::who_nick } unbind RAW - 352 get:nicklist unbind RAW - 315 end:nicklist } proc who:chan {chan} { global black if {![botisop $chan] && ![setting:get $chan xonly]} { return } putquick "WHO :$chan" set ::thechan $chan bind RAW - 352 get:chanlist bind RAW - 315 end:chanlist } proc mode:who:chan {chan} { global black putquick "WHO :$chan" set ::thechan $chan bind RAW - 352 get:chanlist bind RAW - 315 end:chanlist } proc get:chanlist {from keyword arguments} { global black set chan [lindex [split $arguments] 1] set ident [lindex [split $arguments] 2] set host [lindex [split $arguments] 3] set nick [lindex [split $arguments] 5] set realname [lrange [split $arguments] 8 end] set thechan $::thechan set uhost "$nick!$ident@$host" if {[string equal -nocase $thechan $chan]} { blacktools:auto:ban $nick $uhost $thechan $realname } } proc end:chanlist {from keyword arguments} { global black unbind RAW - 352 get:chanlist unbind RAW - 315 end:chanlist if {[info exists ::thechan]} { unset ::thechan } } proc blacktools:auto:ban {nick uhost chan realname} { global black set vhost [lindex [split $uhost @] 1] blacktools:dns:auto_ban $nick $uhost $vhost $chan $realname } proc blacktools:rem_comment {reason} { global black if {[regexp {(%C%)} $reason]} { set is_comment 1 set split_it [wsplit $reason "%C%"] set comment [concat [lindex $split_it 1]] set reason [concat [lindex $split_it 0]] } return $reason } proc blacktools:rem_comment_ban {reason} { global black set split_it "" if {[regexp {(-comment)} $reason]} { set split_it [wsplit $reason "-comment"] } elseif {[regexp {(-com)} $reason]} { set split_it [wsplit $reason "-com"] } elseif {[regexp {(-c)} $reason]} { set split_it [wsplit $reason "-c"] } if {$split_it != ""} { set comment [concat [lindex $split_it 1]] set reason [concat [lindex $split_it 0]] } return $reason } proc blacktools:get_comment {reason} { global black set comment "" if {[regexp {(%C%)} $reason]} { set is_comment 1 set split_it [wsplit $reason "%C%"] set comment [concat [lindex $split_it 1]] } if {$comment != ""} { return $comment } else { return -1 } } proc decr { int { n 1 } } { if { [ catch { uplevel incr $int -$n } err ] } { return -code error "decr: $err" } return [ uplevel set $int ] } proc blacktools:bl:setreason {chan reason bywho expire kcount gl id} { global black set split_hand [split $bywho ":"] set cmd [lindex $split_hand 1] set reason [blacktools:rem_comment $reason] if {$expire != "0"} { set expire [return_reason_time [expr $expire - [unixtime]]] } set show_reason "$reason" if {$gl == "0"} { if {[setting:get $chan showid] && ($cmd != "bot")} { set show_reason "$show_reason \[id: $id\]" } if {[setting:get $chan showtime] && ($expire != "0") && ($cmd != "bot")} { set show_reason "$show_reason \[bantime: $expire\]" } if {[setting:get $chan showurl] && ([setting:get $chan url] != "") && ($cmd != "bot")} { set show_reason "$show_reason - [join [setting:get $chan url]]" } if {[setting:get $chan showcount] && ($cmd != "bot")} { set show_reason "$show_reason - $kcount -" } } elseif {$gl == "1"} { if {[setting:get $chan showhandle]} { set show_reason "\[$bywho\] (GLOBAL) $reason" } else { set show_reason "(GLOBAL) $reason" } if {[setting:get $chan showid]} { set show_reason "$show_reason \[id: $id\]" } } else { if {[setting:get $chan showid] && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason \[id: $id\]" } if {[setting:get $chan showtime] && ($expire != "0") && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason \[bantime: $expire\]" } if {[setting:get $chan showurl] && ([setting:get $chan url] != "") && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason - [join [setting:get $chan url]]" } if {[setting:get $chan showcount] && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason - $kcount -" } } return $show_reason } proc blacktools:setreason {chan reason bywho expire kcount gl id} { global black set split_hand [split $bywho ":"] set gethand [lindex $split_hand 0] set cmd [lindex $split_hand 1] set reason [blacktools:rem_comment $reason] if {$expire != "0"} { set expire [return_reason_time [expr $expire - [unixtime]]] } if {$gl == "0"} { if {![string equal -nocase $gethand "BADCHAN"] && ![string equal -nocase $gethand "badident"] && ![string equal -nocase $gethand "badnick"] && ![string equal -nocase $gethand "antibadquitpart"] && ![string equal -nocase $gethand "antichanflood"] && ![string equal -nocase $gethand "badrealname"] && ![string equal -nocase $gethand "antispam"] && ![string equal -nocase $gethand "badhost"] && ![string equal -nocase $gethand "antipub"] && ![string equal -nocase $gethand "antijoinflood"] && ![string equal -nocase $gethand "antinotice"] && ![string equal -nocase $gethand "antictcp"] && ![string equal -nocase $gethand "antirepeat"] && ![string equal -nocase $gethand "antibold"] && ![string equal -nocase $gethand "anticolor"] && ![string equal -nocase $gethand "antiunderline"] && ![string equal -nocase $gethand "antilongtext"] && ![string equal -nocase $gethand "antibadword"] && ![string equal -nocase $gethand "anticaps"] && ![string equal -nocase $gethand "nickflood"] && ![string equal -nocase $gethand "inviteban"] && ![string equal -nocase $gethand "private"] && ![string equal -nocase $gethand "clonescan"] && ![string equal -nocase $gethand "repetitivechars"] && ![string equal -nocase $gethand "noproxy"]} { if {[setting:get $chan showhandle] && $gethand != ""} { set show_reason "\[$gethand\] $reason" } else { set show_reason "$reason" } } else { set show_reason "$reason" } if {[setting:get $chan showid] && ($cmd != "bot")} { set show_reason "$show_reason \[id: $id\]" } if {[setting:get $chan showtime] && ($expire != "0") && ($cmd != "bot")} { set show_reason "$show_reason \[bantime: $expire\]" } if {[setting:get $chan showurl] && ([setting:get $chan url] != "") && ($cmd != "bot")} { set show_reason "$show_reason - [join [setting:get $chan url]]" } if {[setting:get $chan showcount] && ($cmd != "bot")} { set show_reason "$show_reason - $kcount -" } } elseif {$gl == "1"} { if {[setting:get $chan showhandle]} { set show_reason "\[$bywho\] (GLOBAL) $reason" } else { set show_reason "(GLOBAL) $reason" } if {[setting:get $chan showid]} { set show_reason "$show_reason \[id: $id\]" } } elseif {$gl == "3"} { if {[setting:get $chan showhandle]} { set show_reason "\[$bywho\] (GLOBAL) (REGEX) $reason" } else { set show_reason "(GLOBAL) (REGEX) $reason" } } else { if {![string equal -nocase $gethand "BADCHAN"] && ![string equal -nocase $gethand "badident"] && ![string equal -nocase $gethand "badnick"] && ![string equal -nocase $gethand "antibadquitpart"] && ![string equal -nocase $gethand "antichanflood"] && ![string equal -nocase $gethand "badrealname"] && ![string equal -nocase $gethand "antispam"] && ![string equal -nocase $gethand "badhost"] && ![string equal -nocase $gethand "antipub"] && ![string equal -nocase $gethand "antijoinflood"] && ![string equal -nocase $gethand "antinotice"] && ![string equal -nocase $gethand "antictcp"] && ![string equal -nocase $gethand "antirepeat"] && ![string equal -nocase $gethand "antibold"] && ![string equal -nocase $gethand "anticolor"] && ![string equal -nocase $gethand "antiunderline"] && ![string equal -nocase $gethand "antilongtext"] && ![string equal -nocase $gethand "antibadword"] && ![string equal -nocase $gethand "anticaps"] && ![string equal -nocase $gethand "nickflood"] && ![string equal -nocase $gethand "inviteban"] && ![string equal -nocase $gethand "private"] && ![string equal -nocase $gethand "clonescan"] && ![string equal -nocase $gethand "repetitivechars"] && ![string equal -nocase $gethand "noproxy"]} { if {[setting:get $chan showhandle] && $gethand != ""} { set show_reason "\[$gethand\] (REGEX) $reason" } else { set show_reason "(REGEX) $reason" } } else { set show_reason "$reason" } if {[setting:get $chan showid] && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason \[id: $id\]" } if {[setting:get $chan showtime] && ($expire != "0") && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason \[bantime: $expire\]" } if {[setting:get $chan showurl] && ([setting:get $chan url] != "") && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason - [join [setting:get $chan url]]" } if {[setting:get $chan showcount] && ($cmd != "bot")} { set show_reason "(REGEX) $show_reason - $kcount -" } } return $show_reason } proc blacktools:check:levelban {hand chan level} { global black if {[lsearch -exact -nocase $level "-c"] > -1} { return "" } elseif {[lsearch -nocase $level "-com"] > -1} { return "" } elseif {[lsearch -nocase $level "-comment"] > -1} { return "" } set level [string map {"-" ""} $level] set levels "" if {[matchattr $hand o]} { set levels "[string tolower [blacktools:getlevelname 3 $hand]] [string tolower [blacktools:getlevelname 4 $hand]] [string tolower [blacktools:getlevelname 5 $hand]] [string tolower [blacktools:getlevelname 8 $hand]]" set split_levels [split $levels " "] foreach l $split_levels { if {[string equal -nocase $l $level]} { return $l } } } if {[matchattr $hand nm]} { set levels "[string tolower [blacktools:getlevelname 2 $hand]] [string tolower [blacktools:getlevelname 3 $hand]] [string tolower [blacktools:getlevelname 4 $hand]] [string tolower [blacktools:getlevelname 5 $hand]] [string tolower [blacktools:getlevelname 8 $hand]]" set split_levels [split $levels " "] foreach l $split_levels { if {[string equal -nocase $l $level]} { return $l } } } if {[matchattr $hand -|M $chan]} { set levels "[string tolower [blacktools:getlevelname 3 $hand]] [string tolower [blacktools:getlevelname 4 $hand]] [string tolower [blacktools:getlevelname 5 $hand]]" set split_levels [split $levels " "] foreach l $split_levels { if {[string equal -nocase $l $level]} { return $l } } } if {[matchattr $hand -|A $chan]} { set levels "[string tolower [blacktools:getlevelname 4 $hand]] [string tolower [blacktools:getlevelname 5 $hand]]" set split_levels [split $levels " "] foreach l $split_levels { if {[string equal -nocase $l $level]} { return $l } } } if {[matchattr $hand -|O $chan]} { set levels "[string tolower [blacktools:getlevelname 5 $hand]]" set split_levels [split $levels " "] foreach l $split_levels { if {[string equal -nocase $l $level]} { return $l } } } return "0 [join [string toupper $levels] ", "]" } proc blacktools:check:levelub {hand chan level} { global black set getlevel "" if {[string equal -nocase $level [blacktools:getlevelname 2 $hand]] || [string equal -nocase $level [blacktools:getlevelname 3 $hand]] || [string equal -nocase $level [blacktools:getlevelname 4 $hand]] || [string equal -nocase $level [blacktools:getlevelname 5 $hand]] || [string equal -nocase $level [blacktools:getlevelname 8 $hand]]} { if {[matchattr $hand nm]} { set getlevel [blacktools:getlevelname 2 $hand] } elseif {[matchattr $hand o]} { set getlevel [blacktools:getlevelname 8 $hand] } elseif {[matchattr $hand -|M $chan]} { set getlevel [blacktools:getlevelname 3 $hand] } elseif {[matchattr $hand -|A $chan]} { set getlevel [blacktools:getlevelname 4 $hand] } elseif {[matchattr $hand -|O $chan]} { set getlevel [blacktools:getlevelname 5 $hand] } if {[string equal -nocase $getlevel [blacktools:getlevelname 2 $hand]]} { if {[string equal -nocase $level [blacktools:getlevelname 2 $hand]] || [string equal -nocase $level [blacktools:getlevelname 3 $hand]] || [string equal -nocase $level [blacktools:getlevelname 4 $hand]] || [string equal -nocase $level [blacktools:getlevelname 5 $hand]] || [string equal -nocase $level [blacktools:getlevelname 8 $hand]]} { return 1 } } if {[string equal -nocase $getlevel [blacktools:getlevelname 8 $hand]]} { if {[string equal -nocase $level [blacktools:getlevelname 3 $hand]] || [string equal -nocase $level [blacktools:getlevelname 4 $hand]] || [string equal -nocase $level [blacktools:getlevelname 5 $hand]] || [string equal -nocase $level [blacktools:getlevelname 8 $hand]]} { return 1 } } if {[string equal -nocase $getlevel [blacktools:getlevelname 3 $hand]]} { if {[string equal -nocase $level [blacktools:getlevelname 3 $hand]] || [string equal -nocase $level [blacktools:getlevelname 4 $hand]] || [string equal -nocase $level [blacktools:getlevelname 5 $hand]]} { return 1 } } if {[string equal -nocase $getlevel [blacktools:getlevelname 4 $hand]]} { if {[string equal -nocase $level [blacktools:getlevelname 4 $hand]] || [string equal -nocase $level [blacktools:getlevelname 5 $hand]]} { return 1 } } if {[string equal -nocase $getlevel [blacktools:getlevelname 5 $hand]]} { if {[string equal -nocase $level [blacktools:getlevelname 5 $hand]]} { return 1 } } } else { return 0 } return -1 } ################################### Login ############################### proc loginpublic:start {} { global black botnick if {$black(autologin) == "0"} { return } if {[info exists black(logged)]} { putlog "\002\[BT\]\002 Still logged.." return } chanserv:ignore_remove if {[info exists black(notlogged:invalid)]} { unset black(notlogged:invalid) } if {[info exists black(notlogged:failed)]} { unset black(notlogged:failed) } if {[info exists black(notlogged)]} { unset black(notlogged) } putserv "PRIVMSG $black(hostchanserv) :login $black(username) $black(password)" putserv "PRIVMSG $black(hostchanserv) :set lang EN" putserv "MODE $botnick :$black(xmod)" bind RAW - 401 check:chanserv } proc loginpublic {my} { global botnick black if {$black(autologin) == "0"} { return } chanserv:ignore_remove if {[info exists black(logged)]} { unset black(logged) } if {[info exists black(notlogged)]} { unset black(notlogged) } putserv "PRIVMSG $black(hostchanserv) :login $black(username) $black(password)" putserv "MODE $botnick :$black(xmod)" bind RAW - 401 check:chanserv } ########################## show line output ########################## proc module:getinfo {nick host hand chan chan1 type text modul gl next} { global black set opt [lindex $next 1] set vote_next [lindex $next 2] set next [lindex $next 0] set remain 0 set top "" set split_modul [split $modul ":"] set themodul [lindex $split_modul 0] if {$themodul == "topwords" || $themodul == "topbans"} { set maxentries "10" } else { set maxentries $black(modul:nr:entries) } set getlang [string tolower [getuser $hand XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set getmethod [getuser $hand XTRA OUTPUT_TYPE] if {$getmethod == ""} { set getmethod $black(default_output) } if {[string equal -nocase $next "-next"] || [string equal -nocase $vote_next "-next"]} { if {[info exists black($modul:more:$chan:$hand)]} { if {$black($modul:more:$chan:$hand) >= $maxentries} { for {set i $black($modul:show:$chan:$hand)} { $i < [expr $black($modul:show:$chan:$hand) + $maxentries] } { incr i } { set current_text [lindex $text $i] if {$themodul == "topwords" || $themodul == "topbans"} { if {$current_text != ""} { set nr_text [lindex [split $current_text] 0] set read_nick [lindex [split $current_text] 1] set counter [lindex [split $current_text] 2] lappend top $read_nick:$nr_text:$counter } } else { show:modul:info $nick $host $hand $chan $chan1 $current_text $modul $remain $opt } } if {$themodul == "topwords" || $themodul == "topbans"} { if {$black($modul:more:$chan:$hand) > 0} { set remain 1 } show:modul:info $nick $host $hand $chan $chan1 $top $modul $remain $opt } set black($modul:more:$chan:$hand) [expr $black($modul:more:$chan:$hand) - $maxentries] if {$host == "prv"} { modul:remain $nick $host $hand $black($modul:more:$chan:$hand) $chan $chan1 $getmethod $modul $gl "1" $opt } else { modul:remain $nick $host $hand $black($modul:more:$chan:$hand) $chan $chan1 $getmethod $modul $gl "0" $opt } set black($modul:show:$chan:$hand) [expr $black($modul:show:$chan:$hand) + $maxentries] } else { if {$black($modul:more:$chan:$hand) < 1} { return } for {set i $black($modul:show:$chan:$hand)} { $i <= [expr $black($modul:show:$chan:$hand) + $black($modul:more:$chan:$hand)]} { incr i } { set current_text [lindex $text $i] if {$themodul == "topwords" || $themodul == "topbans"} { if {$current_text != ""} { set nr_text [lindex [split $current_text] 0] set read_nick [lindex [split $current_text] 1] set counter [lindex [split $current_text] 2] lappend top $read_nick:$nr_text:$counter } } else { show:modul:info $nick $host $hand $chan $chan1 $current_text $modul $remain $opt } } if {$themodul == "topwords" || $themodul == "topbans"} { show:modul:info $nick $host $hand $chan $chan1 $top $modul $remain $opt } set black($modul:more:$chan:$hand) [expr $black($modul:more:$chan:$hand) - $black($modul:show:$chan:$hand)] } foreach tmr [utimers] { if {[string match -nocase "*module:getinfo:unset:more $chan $hand*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } utimer 30 [list module:getinfo:unset:more $chan $hand $modul] if {$black($modul:more:$chan:$hand) < 1} { switch $themodul { badchan { blacktools:tell $nick $host $hand $chan $chan1 $modul.4 none } vote { if {$opt != ""} { blacktools:tell $nick $host $hand $chan $chan1 $modul.36 none } else { blacktools:tell $nick $host $hand $chan $chan1 $modul.26 none } } notesinbox { blacktools:tell $nick $host $hand $chan $chan1 $modul.13 none } noteslist { blacktools:tell $nick $host $hand $chan $chan1 $modul.13 none } anunt { blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none } tcl { blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none } quote { blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none } autobroadcast { blacktools:tell $nick $host $hand $chan $chan1 $modul.10 none } topwords { } topbans { } badword { blacktools:tell $nick $host $hand $chan $chan1 antibadword.3 none } badquitpart { blacktools:tell $nick $host $hand $chan $chan1 antibadquitpart.3 none } default { blacktools:tell $nick $host $hand $chan $chan1 $themodul.3 none } } } } return } switch $themodul { badchan { if {$gl == "1"} { blacktools:tell $nick $host $hand $chan $chan1 $modul.15 none } else { blacktools:tell $nick $host $hand $chan $chan1 $modul.14 none } } anunt { blacktools:tell $nick $host $hand $chan $chan1 $modul.8 none } tcl { blacktools:tell $nick $host $hand $chan $chan1 $modul.10 none } notesinbox { } noteslist { } quote { blacktools:tell $nick $host $hand $chan $chan1 $modul.8 none } autobroadcast { blacktools:tell $nick $host $hand $chan $chan1 $modul.9 none } topwords { } topbans { } badword { blacktools:tell $nick $host $hand $chan $chan1 antibadword.7 none } badquitpart { blacktools:tell $nick $host $hand $chan $chan1 antibadquitpart.7 none } vote { if {$opt != ""} { blacktools:tell $nick $host $hand $chan $chan1 $modul.35 [list $opt] } else { blacktools:tell $nick $host $hand $chan $chan1 $modul.29 none } } default { blacktools:tell $nick $host $hand $chan $chan1 $themodul.7 none } } set black($modul:ltext:$chan:$hand) [llength $text] set black($modul:show:$chan:$hand) 0 if {$black($modul:ltext:$chan:$hand) > $maxentries} { set black($modul:more:$chan:$hand) [expr $black($modul:ltext:$chan:$hand) - $maxentries] for {set i 0} { $i < $maxentries } { incr i } { set current_text [lindex $text $i] if {$themodul == "topwords" || $themodul == "topbans"} { if {$current_text != ""} { set nr_text [lindex [split $current_text] 0] set read_nick [lindex [split $current_text] 1] set counter [lindex [split $current_text] 2] lappend top $read_nick:$nr_text:$counter } } else { show:modul:info $nick $host $hand $chan $chan1 $current_text $modul $remain $opt } } if {$themodul == "topwords" || $themodul == "topbans"} { if {$black($modul:more:$chan:$hand) > 0} { set remain 1 } show:modul:info $nick $host $hand $chan $chan1 $top $modul $remain $opt } set black($modul:show:$chan:$hand) [expr $black($modul:show:$chan:$hand) + $maxentries] if {$black($modul:more:$chan:$hand) > 0} { if {$host == "prv"} { modul:remain $nick $host $hand $black($modul:more:$chan:$hand) $chan $chan1 $getmethod $modul $gl "1" $opt } else { modul:remain $nick $host $hand $black($modul:more:$chan:$hand) $chan $chan1 $getmethod $modul $gl "0" $opt } } foreach tmr [utimers] { if {[string match -nocase "*module:getinfo:unset:more $chan $hand*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } utimer 60 [list module:getinfo:unset:more $chan $hand $modul] } else { for {set i 0} { $i < $maxentries } { incr i } { set current_text [lindex $text $i] if {$themodul == "topwords" || $themodul == "topbans"} { if {$current_text != ""} { set nr_text [lindex [split $current_text] 0] set read_nick [lindex [split $current_text] 1] set counter [lindex [split $current_text] 2] lappend top $read_nick:$nr_text:$counter } } else { show:modul:info $nick $host $hand $chan $chan1 $current_text $modul $remain $opt } } if {$themodul == "topwords" || $themodul == "topbans"} { show:modul:info $nick $host $hand $chan $chan1 $top $modul $remain $opt } switch $themodul { badchan { blacktools:tell $nick $host $hand $chan $chan1 $modul.4 none } vote { if {$opt != ""} { blacktools:tell $nick $host $hand $chan $chan1 $modul.36 none } else { blacktools:tell $nick $host $hand $chan $chan1 $modul.26 none } } anunt { blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none } tcl { blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none } notesinbox { blacktools:tell $nick $host $hand $chan $chan1 $modul.13 none } noteslist { blacktools:tell $nick $host $hand $chan $chan1 $modul.13 none } quote { blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none } autobroadcast { blacktools:tell $nick $host $hand $chan $chan1 $modul.10 none } topwords { } topbans { } badword { blacktools:tell $nick $host $hand $chan $chan1 antibadword.3 none } badquitpart { blacktools:tell $nick $host $hand $chan $chan1 antibadquitpart.3 none } default { blacktools:tell $nick $host $hand $chan $chan1 $themodul.3 none } } } } proc module:getinfo:unset:more {chan hand modul} { global black if {[info exists black($modul:more:$chan:$hand)]} { unset black($modul:more:$chan:$hand) } if {[info exists black($modul:ltext:$chan:$hand)]} { unset black($modul:ltext:$chan:$hand) } if {[info exists black($modul:show:$chan:$hand)]} { unset black($modul:show:$chan:$hand) } } proc show:modul:info {nick host hand chan chan1 text modul remain opt} { global black lastbind set split_modul [split $modul ":"] set themodul [lindex $split_modul 0] set total [lindex $split_modul 1] set otherchan 0 set top "" if {$chan != $chan1} { set otherchan 1 } if {$text == ""} { return } set getlang [string tolower [getuser $hand XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {$themodul == "topwords" || $themodul == "topbans"} { foreach entry $text { set split_entry [split $entry ":"] set nickname [lindex $split_entry 1] set word_count [lindex $split_entry 0] set place [lindex $split_entry 2] lappend top "\002#$place\002. $nickname ($word_count)" } if {$remain == "1"} { set split_lastbind [split $lastbind ""] set charbind [lindex $split_lastbind 0] if {[lsearch -exact $black(cmdchar) $charbind] < 0} { set charbind "" } set replace(%char%) $charbind set replace(%chan%) $chan if {[string equal -nocase $total "total"]} { if {$otherchan == "1"} { set others [string map [array get replace] $black(say.$getlang.$themodul.12)] } else { set others [string map [array get replace] $black(say.$getlang.$themodul.11)] } } elseif {[string equal -nocase $total "week"]} { if {$otherchan == "1"} { set others [string map [array get replace] $black(say.$getlang.$themodul.25)] } else { set others [string map [array get replace] $black(say.$getlang.$themodul.26)] } } else { if {$otherchan == "1"} { set others [string map [array get replace] $black(say.$getlang.$themodul.13)] } else { set others [string map [array get replace] $black(say.$getlang.$themodul.9)] } } if {[string equal -nocase $total "total"]} { blacktools:tell $nick $host $hand $chan $chan1 $themodul.1 "[join $top] $others" } elseif {[string equal -nocase $total "week"]} { blacktools:tell $nick $host $hand $chan $chan1 $themodul.24 "[join $top] $others" } else { blacktools:tell $nick $host $hand $chan $chan1 $themodul.2 "[join $top] $others" } } else { if {[string equal -nocase $total "total"]} { blacktools:tell $nick $host $hand $chan $chan1 $themodul.1 "[join $top]" } elseif {[string equal -nocase $total "week"]} { blacktools:tell $nick $host $hand $chan $chan1 $themodul.24 "[join $top]" } else { blacktools:tell $nick $host $hand $chan $chan1 $themodul.2 "[join $top]" } } } elseif {$themodul == "vote"} { if {[regexp {^[0-9]+$} $opt]} { set id [lindex $text 0] set handle [lindex $text 1] set host [lindex $text 2] set vote [lindex $text 3] set vote_time [clock format [lindex $text 4] -format "%d/%m/%y %H:%M"] blacktools:tell_v2 $nick $host $hand $chan $chan1 vote.34 [list $id $handle $host $vote $vote_time] return } set id [lindex $text 0] set voting_name [lindex $text 1] set show_list [lindex $text 2] set status [lindex $text 3] set access [lindex $text 4] set expire_time [lindex $text 5] set handle [lindex $text 6] if {$status == 1} {set read_status $black(say.$getlang.vote.13)} else {set read_status $black(say.$getlang.vote.14)} if {$status == 0} { blacktools:tell_v2 $nick $host $hand $chan $chan1 vote.37 [list $id $voting_name $show_list $read_status $access $expire_time $handle] } else { blacktools:tell_v2 $nick $host $hand $chan $chan1 vote.25 [list $id $voting_name $show_list $read_status $access $expire_time $handle] } } else { set num [lindex [split $text] 0] set gettext [join [lrange [split $text] 1 end]] set encoded [encoding convertfrom utf-8 $gettext] set gettext [lindex [split $text] 0] blacktools:tell $nick $host $hand $chan $chan1 gl.showline "$num [join $encoded]" } } proc modul:remain {nick host hand count chan chan1 type modul gl prv opt} { global black lastbind botnick set otherchan 0 set charbind "" if {$chan != $chan1} { set otherchan 1 } if {$count == "0"} { return } set split_modul [split $modul ":"] set themodul [lindex $split_modul 0] set getlang [string tolower [getuser $hand XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set firstchar [lindex $black(cmdchar) 0] if {[string equal $lastbind "*"]} { set charbind "prv" } elseif {[string equal -nocase "**" $lastbind]} { set charbind "$botnick " } elseif {[string equal -nocase "***" $lastbind]} { set split_host [split $host ":"] if {[lindex $split_host 1] == "chan"} { set host [lindex $split_host 1] set charbind [lindex $split_host 0] } else { set charbind "$host" } } if {$charbind == ""} { set charbind $firstchar if {[validuser $hand]} { set getchar [getuser $hand XTRA MYCHAR] if {$getchar != ""} { set charbind $getchar } } } if {$charbind == "prv"} { set charbind "" } set replace(%char%) $charbind set replace(%counter%) $count set replace(%chan%) $chan switch [string tolower $themodul] { badchan { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.$modul.41) } else { set msg $black(say.$getlang.$modul.3) } if {$gl == "1"} { set msg $black(say.$getlang.$modul.2) } } vote { set replace(%id%) $opt if {$otherchan == "1" || $prv == "1"} { if {$opt != ""} { set msg $black(say.$getlang.$modul.32) } else { set msg $black(say.$getlang.$modul.28) } } else { if {$opt != ""} { set msg $black(say.$getlang.$modul.31) } else { set msg $black(say.$getlang.$modul.27) } } } anunt { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.$modul.14) } else { set msg $black(say.$getlang.$modul.9) } } tcl { set msg $black(say.$getlang.$modul.9) } notesinbox { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.$modul.16) } else { set msg $black(say.$getlang.$modul.15) } } noteslist { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.$modul.16) } else { set msg $black(say.$getlang.$modul.15) } } quote { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.$modul.14) } else { set msg $black(say.$getlang.$modul.9) } } topwords { set msg "" } topbans { set msg "" } autobroadcast { set msg $black(say.$getlang.$modul.12) } badword { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.antibadword.9) } else { set msg $black(say.$getlang.antibadword.8) } } badquitpart { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.antibadquitpart.9) } else { set msg $black(say.$getlang.antibadquitpart.8) } } default { if {$otherchan == "1" || $prv == "1"} { set msg $black(say.$getlang.$themodul.9) } else { set msg $black(say.$getlang.$themodul.8) } } } if {$msg == ""} { return } blacktools:tell:cmd $nick $host $hand $chan $chan1 $prv $type [string map [array get replace] $msg] } ########################## Other Module Process ###################### proc othermodule:process {nick host hand chan chan1 who msg type modul} { global black botnick set cmd_status [btcmd:status $chan $hand $modul 0] if {$cmd_status == "1"} { return } if {[matchattr $hand q]} { blacktools:tell $nick $host $hand $chan $chan1 gl.glsuspend none return } if {[matchattr $hand -|q $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.suspend none return } if {![validchan $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $modul return } if {![onchan $botnick $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.notonchan none return } switch $who { on { if {[string equal -nocase $modul "topic"]} { return } blacktools:tell $nick $host $hand $chan $chan1 $modul.2 none setting:set $chan +$modul "" } off { if {[string equal -nocase $modul "topic"]} { return } blacktools:tell $nick $host $hand $chan $chan1 $modul.3 none setting:set $chan -$modul "" } unset { if {[string equal -nocase $modul "topic"]} { putserv "TOPIC $chan :" msg:del $chan $modul blacktools:tell $nick $host $hand $chan $chan1 topic.4 none } } set { if {![string equal -nocase $modul "topic"]} { if {$msg == ""} { switch $type { 0 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $modul } 1 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick $modul } 2 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv $modul } } return } } if {[string equal -nocase $modul "topic"]} { set thetopic [topic $chan] set url [join [setting:get $chan url]] if {$msg == ""} { if {$url != ""} { set gettopic [string map [list "([color:filter $url])" ""] [color:filter $thetopic]] } else { set gettopic $thetopic } set msg $gettopic } if {$msg == ""} { blacktools:tell $nick $host $hand $chan $chan1 topic.2 none return } if {$thetopic != $msg} { blacktools:tell $nick $host $hand $chan $chan1 topic.1 $msg if {$url != ""} { putserv "TOPIC $chan :$msg ($url)" } else { putserv "TOPIC $chan :$msg" } } else { blacktools:tell $nick $host $hand $chan $chan1 topic.3 $msg } msg:add $msg $chan $modul return } msg:add $msg $chan $modul blacktools:tell $nick $host $hand $chan $chan1 $modul.1 $msg } show { set getline "" set file [open $black(join_file) r] while {[gets $file line] != -1} { set read_modul [lindex [split $line] 0] set read_chan [lindex [split $line] 1] if {[string equal -nocase $read_modul $modul] && [string equal -nocase $chan $read_chan]} { set read_msg [lrange [split $line] 2 end] set getline [encoding convertfrom utf-8 $read_msg] continue } } close $file blacktools:tell $nick $host $hand $chan $chan1 show.6 "$modul $getline" } default { switch $type { 0 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $modul } 1 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick $modul } 2 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv $modul } } } } } proc msg:del {chan modul} { global black set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/othermodule_temp.$timestamp" set file [open $black(join_file) r] set tempwrite [open $temp w] while {[gets $file line] != -1} { set read_modul [lindex [split $line] 0] set read_chan [lindex [split $line] 1] set enc_chan [encoding convertfrom utf-8 $read_chan] if {[string equal -nocase $read_modul $modul] && [string equal -nocase $chan $enc_chan]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(join_file) } proc msg:add {msg chan modul} { global black set msg [encoding convertto utf-8 $msg] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/othermodule_temp.$timestamp" set file [open $black(join_file) r] set tempwrite [open $temp w] while {[gets $file line] != -1} { set read_modul [lindex [split $line] 0] set read_chan [lindex [split $line] 1] set enc_chan [encoding convertfrom utf-8 $read_chan] if {[string equal -nocase $read_modul $modul] && [string equal -nocase $chan $enc_chan]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(join_file) set file [open $black(join_file) a] set enc_chan [encoding convertto utf-8 $chan] puts $file "[string toupper $modul] $enc_chan $msg" close $file } ######################### Channel Remove Data #################### proc delchan:all {chan} { global black if {$black(chanremove_all) == "0"} { return } set files "$black(s_file) $black(seen_file) $black(bans_file) $black(join_file) $black(extra_file) $black(add_file) $black(quote_file)" set split_files [split $files " "] remove:chan:now $split_files 0 $chan topwords:delete $chan } proc remove:chan:timer {minute hour day month year} { global black if {$black(chanremove_all) == "0"} { return } set files "$black(s_file) $black(seen_file) $black(bans_file) $black(join_file) $black(extra_file) $black(add_file) $black(quote_file)" set split_files [split $files " "] remove:chan:now_timer $split_files 0 } proc remove:chan:now_timer {files num} { global black set f [lindex $files $num] if {[string match -nocase "*seen*" $f] || [string match -nocase *othermodule* $f]} { set pos 1 } elseif {[string match -nocase "*bans*" $f]} { set pos 2 } else { set pos 0 } set inc [expr $num + 1] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/removechan_temp.$timestamp" set file [open $f r] set tempwrite [open $temp w] while {[gets $file line] != -1} { if {$line != ""} { set chan [lindex [split $line] $pos] set encoded [encoding convertfrom utf-8 $chan] if {[regexp {^[&#]} $encoded] && ![validchan $encoded]} { continue } else { puts $tempwrite $line } } } close $tempwrite close $file file rename -force $temp $f if {[lindex $files $inc] != ""} { utimer 3 [list remove:chan:now_timer $files $inc] } } proc remove:chan:now {files num c} { global black set f [lindex $files $num] if {[string match -nocase "*seen*" $f] || [string match -nocase *othermodule* $f]} { set pos 1 } elseif {[string match -nocase "*bans*" $f]} { set pos 2 } else { set pos 0 } set inc [expr $num + 1] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/removechan_temp.$timestamp" set file [open $f r] set tempwrite [open $temp w] while {[gets $file line] != -1} { if {$line != ""} { set chan [lindex [split $line] $pos] set encoded [encoding convertfrom utf-8 $chan] if {[string equal -nocase $c $encoded]} { continue } else { puts $tempwrite $line } } } close $tempwrite close $file file rename -force $temp $f if {[lindex $files $inc] != ""} { utimer 3 [list remove:chan:now $files $inc $c] } } ########################### Extra settings ######################## proc btcmd:global:set {hand cmd type} { global black if {[lsearch -exact $black(validcmds) $cmd] < 0} { return 2 } if {[string equal -nocase "enable" $cmd]} { return 3 } set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/add_file_temp.$timestamp" set file [open $black(add_file) r] set tempwrite [open $temp w] set cmd_found 0 set disable_type 0 while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] if {[string equal -nocase $c "disable"] && [string equal -nocase $gettype "global"] && [string equal -nocase $comp $cmd]} { set cmd_found 1 continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(add_file) if {$type == "1"} { set file [open $black(add_file) a] puts $file "DISABLE GLOBAL [string toupper $cmd] $type" close $file } return $cmd_found } proc btcmd:gl:status {cmd} { global black set file [open $black(add_file) r] set cmd_found 0 while {[gets $file line] != -1} { set disable [lindex [split $line] 0] set c [lindex [split $line] 1] set gettype [lindex [split $line] 2] if {[string equal -nocase $disable "disable"] && [string equal -nocase $c "global"] && [string equal -nocase $gettype $cmd]} { set cmd_found 1 continue } } close $file return $cmd_found } proc btcmd:status {chan hand cmd menureply} { global black set cmd_found 0 set access "" set split_hand [split $hand ":"] set hand [lindex $split_hand 0] if {[matchattr $hand -|M $chan]} { set access "MANAGER" } elseif {[matchattr $hand n]} { set access "BOSS" } elseif {[matchattr $hand m]} { set access "OWNER" } elseif {[matchattr $hand o]} { set access "MASTER" } if {$menureply == "1"} { set file [open $black(add_file) r] while {[gets $file line] != -1} { set disable [lindex [split $line] 0] set c [lindex [split $line] 1] set gettype [lindex [split $line] 2] set disable_level [lindex [split $line] 3] if {[string equal -nocase $disable "disable"] && [string equal -nocase $c "global"] && [string equal -nocase $gettype $cmd]} { set cmd_found 1 continue } if {[string equal -nocase $disable "disable"] && [string equal -nocase $c $chan] && [string equal -nocase $gettype $cmd]} { switch $access { MANAGER { if {$disable_level == "OWNER"} { set cmd_found 1 } if {$disable_level == "BOSS"} { set cmd_found 1 } if {$disable_level == "MANAGER"} { set cmd_found 1 } if {$disable_level == "MASTER"} { set cmd_found 1 } } OWNER { if {$disable_level == "BOSS"} { set cmd_found 1 } if {$disable_level == "OWNER"} { set cmd_found 1 } } MASTER { if {$disable_level == "BOSS"} { set cmd_found 1 } if {$disable_level == "OWNER"} { set cmd_found 1 } if {$disable_level == "MASTER"} { set cmd_found 1 } } BOSS { if {$disable_level == "BOSS"} { set cmd_found 1 } } default { set cmd_found 1 } } } } close $file return $cmd_found } set file [open $black(add_file) r] while {[gets $file line] != -1} { set disable [lindex [split $line] 0] set c [lindex [split $line] 1] set gettype [lindex [split $line] 2] set disable_level [lindex [split $line] 3] if {[string equal -nocase $disable "disable"] && [string equal -nocase $c "global"] && [string equal -nocase $gettype $cmd]} { set cmd_found 1 continue } if {[string equal -nocase $disable "disable"] && [string equal -nocase $c $chan] && [string equal -nocase $gettype $cmd]} { switch $access { MANAGER { if {$disable_level == "OWNER"} { set cmd_found 1 } if {$disable_level == "BOSS"} { set cmd_found 1 } if {$disable_level == "MANAGER"} { set cmd_found 1 } if {$disable_level == "MASTER"} { set cmd_found 1 } } OWNER { if {$disable_level == "BOSS"} { set cmd_found 1 } if {$disable_level == "OWNER"} { set cmd_found 1 } } MASTER { if {$disable_level == "BOSS"} { set cmd_found 1 } if {$disable_level == "OWNER"} { set cmd_found 1 } if {$disable_level == "MASTER"} { set cmd_found 1 } } BOSS { if {$disable_level == "BOSS"} { set cmd_found 1 } } default { set cmd_found 1 } } } } if {$cmd_found == "0"} { set user_cmd_status [getuser $hand XTRA $cmd\($chan\)] if {$user_cmd_status == "OFF"} { set cmd_found 1 } } close $file return $cmd_found } proc btcmd:set:user {nick host hand chan chan1 user cmd type} { global black if {[lsearch -exact $black(validcmds) $cmd] < 0} { return 2 } set show_user $user if {![validuser $user]} { if {[onchan $user $chan]} { set handle [nick2hand $user] if {![validuser $handle]} { blacktools:tell $nick $host $hand $chan $chan1 gl.nomem none return } } blacktools:tell $nick $host $hand $chan $chan1 gl.nomem none return } set status [getuser $user XTRA $cmd\($chan\)] switch $type { 1 { if {$status == "OFF"} { blacktools:tell $nick $host $hand $chan $chan1 disable.5 "$cmd $show_user" return } setuser $user XTRA $cmd\($chan\) OFF blacktools:tell $nick $host $hand $chan $chan1 disable.4 "$cmd $show_user" } 0 { if {$status == "OFF"} { setuser $user XTRA $cmd\($chan\) blacktools:tell $nick $host $hand $chan $chan1 enable.4 "$cmd $show_user" return } blacktools:tell $nick $host $hand $chan $chan1 enable.5 "$cmd $show_user" } } } proc btcmd:getlevel {chan cmd} { global black set file [open $black(add_file) r] set found_level "" while {[gets $file line] != -1} { set disable [lindex [split $line] 0] set c [lindex [split $line] 1] set gettype [lindex [split $line] 2] if {[string equal -nocase $disable "disable"] && [string equal -nocase $c $chan] && [string equal -nocase $gettype $cmd]} { set comp [lindex [split $line] 3] set found_level $comp } } close $file return $found_level } proc btcmd:set {chan hand cmd type} { global black if {[lsearch -exact -nocase $black(validcmds) $cmd] < 0} { return 2 } if {[string equal -nocase "enable" $cmd]} { return 3 } if {[matchattr $hand -|M $chan]} { set access "MANAGER" } elseif {[matchattr $hand n]} { set access "BOSS" } elseif {[matchattr $hand m]} { set access "OWNER" } elseif {[matchattr $hand o]} { set access "MASTER" } set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/add_file_temp.$timestamp" set file [open $black(add_file) r] set tempwrite [open $temp w] set cmd_found 0 set disable_type 0 while {[gets $file line] != -1} { set disable [lindex [split $line] 0] set c [lindex [split $line] 1] set gettype [lindex [split $line] 2] set comp [lindex [split $line] 3] if {[string equal -nocase $disable "disable"] && [string equal -nocase $c $chan] && [string equal -nocase $gettype $cmd]} { set cmd_found 1 continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(add_file) if {$type == "1"} { set file [open $black(add_file) a] puts $file "DISABLE $chan [string toupper $cmd] $access" close $file } return $cmd_found } proc setting:set {chan setting msg} { global black set getsetting [string map { "+" "" "-" ""} $setting] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/extra_temp.$timestamp" set file [open $black(extra_file) r] set tempwrite [open $temp w] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] set comp [string map { "+" "" "-" ""} $comp] if {[string equal -nocase $c $chan] && [string equal -nocase $gettype "XTRA"] && [string equal -nocase $comp $getsetting]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(extra_file) if {[regexp {^[-]} $setting]} { return } set file [open $black(extra_file) a] if {[regexp {^[+]} $setting]} { puts $file "$chan XTRA [string toupper $setting]" } else { puts $file "$chan XTRA [string toupper $setting] $msg" } close $file } proc setting:exists {setting} { global black set found_it 0 if {[regexp {^[+-]} $setting]} { set setting [string map { "+" "" "-" ""} $setting] } if {[lsearch -exact [string tolower $black(extra_flag)] [string tolower $setting]] > -1} { set found_it 1 } elseif {[lsearch -exact [string tolower $black(extra_str)] [string tolower $setting]] > -1} { set found_it 2 } return $found_it } proc setting:status {chan setting msg} { global black set status 0 if {[regexp {^[+-]} $setting]} { set file [open $black(extra_file) r] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] set comp_map [string map { "+" "" "-" ""} $comp] set setting [string map { "+" "" "-" ""} $setting] if {[string equal -nocase $c $chan] && [string equal -nocase $gettype "XTRA"] && [string equal -nocase $comp_map $setting]} { if {[regexp {^[+]} $comp]} { set status 1 break } } } close $file return $status } set file [open $black(extra_file) r] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] set getmsg [lrange [split $line] 3 end] if {![regexp {^[+-]} $comp]} { if {[string equal -nocase $c $chan] && [string equal -nocase $gettype "XTRA"] && [string equal -nocase $comp $setting] && [string equal -nocase $msg $getmsg]} { set status 1 break } } } close $file return $status } proc setting:get {chan setting} { global black if {![file exists $black(extra_file)]} {return 0} set flag_setting 0 set found_it 0 set return "" set file [open $black(extra_file) r] set setting_exists [setting:exists $setting] set setting [string map { "+" "" "-" ""} $setting] if {$setting_exists == "1"} { set flag_setting 1 } while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] set getsetting [string map { "+" "" "-" ""} $comp] if {[string equal -nocase $c $chan] && [string equal -nocase $gettype "XTRA"] && [string equal -nocase $getsetting $setting]} { set found_it 1 set getmsg [lrange [split $line] 3 end] if {$flag_setting == "0"} { set return $getmsg break } else { if {[regexp {^[+]} $comp]} { set return 1 break } if {[regexp {^[-]} $comp]} { set return 0 break } } } } if {($found_it == "0") && ($flag_setting == "1")} { set return 0 } close $file return $return } proc get:flags {chan} { global black set all "" set file [open $black(extra_file) r] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] if {[string equal -nocase $chan $c]} { if {[regexp {^[+]} $comp]} { lappend all $comp } } } close $file return $all } proc get:str {chan} { global black set all "" set file [open $black(extra_file) r] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set gettype [lindex [split $line] 1] set comp [lindex [split $line] 2] set why [join [lrange [split $line] 3 end]] if {[string equal -nocase $chan $c]} { if {[regexp {^[+-]} $comp]} { continue } else { lappend all $comp&&$why } } } close $file return $all } proc blacktools:flag:exists {chan setting} { global black set flag_exists 0 set file [open $black(extra_file) r] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set comp [lindex [split $line] 2] if {[regexp {^[+-]} $comp]} { set comp [string map {"+" "" "-" ""} $comp] } if {[regexp {^[+-]} $setting]} { set setting [string map {"+" "" "-" ""} $setting] } if {[string equal -nocase $c $chan]} { if {[string equal -nocase $setting $comp]} { set flag_exists 1 break } } } close $file return $flag_exists } proc blacktools:ban:exists {mask chan} { global black set ban_exists "" foreach b $black(bans) { set read_chan [lindex [split $b] 2] if {[string equal -nocase $chan $read_chan]} { set read_host [lindex [split $b] 3] set real_read_host [string map [list \[ {\[} \] {\]} \\ {\\}] $read_host] if {[string equal -nocase $real_read_host $mask]} { break } if {[string match -nocase $real_read_host $mask]} { set ban_exists $read_host break } } } return $ban_exists } proc blacktools:protect {nick chan} { global black if {[isop $nick $chan]} { set oprotect [string tolower [setting:get $chan oprotect]] if {$oprotect == "1"} { return 1 } } if {[isvoice $nick $chan]} { set vprotect [string tolower [setting:get $chan vprotect]] if {$vprotect == "1"} { return 1 } } if {[ishalfop $nick $chan]} { set hoprotect [string tolower [setting:get $chan hoprotect]] if {$hoprotect == "1"} { return 1 } } return 0 } ######################### bad quitpart colors ################ set black(badcolors) { "*\x03*" "*\037*" "*\002*" } ###################### protect color filter ################## proc color:filter {str} { regsub -all -- {\003([0-9]{1,2}(,[0-9]{1,2})?)?|\017|\037|\002|\026|\006|\007} $str "" str return $str } ###################### add extra (badwords, excepts) ########## proc addextra:find:num {chan type num} { global black set ret 0 set file [open $black(add_file) r] while {[gets $file line] != -1} { set read_chan [lindex [split $line] 0] set read_type [lindex [split $line] 1] set read_num [lindex [split $line] 2] set enc_chan [encoding convertfrom utf-8 $read_chan] if {[string equal -nocase $enc_chan $chan] && [string equal -nocase $read_type $type]} { if {$read_num == "$num"} { set ret $read_num } } } close $file return $ret } proc blacktools:ban:find_id {} { global black set lastid [blacktools:banlist:lastid] set current [expr $lastid + 1] return $current } proc check:file:word {chan text type} { global black set found_word "" set get_pers "" set split_w "" set file [open $black(add_file) "r"] while {[gets $file line] != -1} { set c [lindex [split $line] 0] set t [lindex [split $line] 1] set w [join [lrange [split $line] 3 end]] if {[string equal -nocase $t "BADWORD"] && [string equal -nocase $type "BADWORD"]} { if {[regexp {[:]} $w]} { set split_w [split $w ":"] set w [join [lindex $split_w 0]] } } if {[string match -nocase $c $chan] && [string match -nocase $w $text] && [string match -nocase $t $type]} { set found_word $w if {$split_w != ""} { set get_pers [lindex $split_w 1] } } } close $file if {$get_pers != "" && $found_word != ""} { return "$found_word:$get_pers" } else { return $found_word } } proc get:banmethod {cmd chan} { global black if {![validchan $chan]} { return } set get_pers "" if {[regexp {[:]} $cmd]} { set split_cmd [split $cmd ":"] set get_cmd [lindex [split $split_cmd] 0] if {[string equal -nocase $get_cmd "antibadword"]} { set get_pers [lindex [split $split_cmd] 1] } } if {$get_pers != ""} { return $get_pers } set get [setting:get $chan $cmd-banmethod] if {$get != ""} { return $get } else { set get [setting:get $chan banmethod] if {$get != ""} { return $get } else { return $black($cmd:banmethod) } } } proc get:banmask {cmd chan} { global black if {$cmd == "b:gl"} { return $black($cmd:banmask) } if {![validchan $chan]} { return } set get [setting:get $chan $cmd-banmask] if {$get != ""} { return $get } else { set get [setting:get $chan general-banmask] if {$get != ""} { return $get } else { return $black($cmd:banmask) } } } proc get:mask {cmd chan} { global black if {$cmd == "hello"} { return $black($cmd:mask) } if {![validchan $chan]} { return } set get [setting:get $chan $cmd-mask] if {$get != ""} { return $get } else { set get [setting:get $chan mask] if {$get != ""} { return $get } else { return $black($cmd:mask) } } } proc find:num {num chan type} { global black set ret 0 set file [open $black(add_file) r] while {[gets $file line] != -1} { set read_chan [lindex [split $line] 0] set read_type [lindex [split $line] 1] set read_num [lindex [split $line] 2] set enc_chan [encoding convertfrom utf-8 $read_chan] if {[string equal -nocase $enc_chan $chan] && [string equal -nocase $read_type $type]} { if {$read_num == "$num"} { set ret $read_num } } } close $file return $ret } proc find:q:num {num chan} { global black set ret 0 set file [open $black(quote_file) r] while {[gets $file line] != -1} { set read_chan [lindex [split $line] 0] set read_num [lindex [split $line] 2] set enc_chan [encoding convertfrom utf-8 $read_chan] if {[string equal -nocase $enc_chan $chan]} { if {$read_num == "$num"} { set ret $read_num } } } close $file return $ret } proc find:note:num {num} { global black set ret 0 set file [open $black(notes_file) r] while {[gets $file line] != -1} { set read_num [lindex [split $line] 2] if {$read_num == "$num"} { set ret $read_num } } close $file return $ret } ####################### troll announce ####################### proc troll:add {banned mask chan} { global black set found_it 0 if {![info exists black(troll:$chan)]} { set black(troll:$chan) "" } foreach troll $black(troll:$chan) { set troll_split [split $troll ":"] set nick [lindex $troll_split 0] set host [lindex $troll_split 1] if {[string equal -nocase $banned $nick]} { set found_it 1 continue } } if {$found_it == "1"} { return } if {[lsearch -exact [string tolower $black(troll:$chan)] [string tolower $banned:$mask]] > -1} { return } lappend black(troll:$chan) $banned:$mask } proc troll:del {mask chan} { global black if {![info exists black(troll:$chan)]} { return } if {$black(troll:$chan) == ""} { return } foreach troll $black(troll:$chan) { set troll_split [split $troll ":"] set nick [lindex $troll_split 0] set host [lindex $troll_split 1] if {[string equal -nocase $host $mask]} { if {[lsearch -exact [string tolower $black(troll:$chan)] [string tolower $nick:$host]] > -1} { set position [lsearch -exact [string tolower $black(troll:$chan)] [string tolower $nick:$host]] set black(troll:$chan) [lreplace $black(troll:$chan) $position $position] } } } } proc troll:show {nick host hand chan} { global black if {![setting:get $chan showtroll]} { return } if {[info exists black(turnOnFlood:$chan)]} { return } if {![info exists black(troll:$chan)]} { return } if {$black(troll:$chan) == ""} { return } if {[matchattr $hand $black(exceptflags) $chan]} { set lang [setting:get $chan lang] if {$lang == ""} { set lang [string tolower $black(default_lang)] } set trolls "" foreach troll $black(troll:$chan) { set troll_split [split $troll ":"] set tr [lindex $troll_split 0] lappend trolls $tr } set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set replace(%msg%) $trolls set replace(%chan%) $chan set text [black:color:set "" $black(say.$getlang.troll.6)] putserv "NOTICE $nick :[join [string map [array get replace] $text]]" } } ######################## BoT set code ################### proc bot:setcode {} { global black set schars "` ! \" % ' & \[ \] ! / ; \ * ^ % $ \#" set alphabet "a b c d e f g h i j k l m n o p q r s t u v w x y z" set numbers "0 1 2 3 4 5 6 7 8 9" set code "" for {set i 0} { $i < 1 } { incr i} { lappend code "[lindex [split $schars] [rand 7]] " } for {set i 0} { $i < 2 } { incr i} { lappend code [lindex $alphabet [rand 26]] } for {set j 0} { $j < 3 } { incr j} { lappend code [lindex $numbers [rand 10]] } for {set i 0} { $i < 1 } { incr i} { lappend code " [lindex [split $schars] [rand 7]]" } return [join $code ""] } ################ Bans - KICKS Day Reset ################## proc bans:day:reset {minute hour day month year} { global black foreach user [userlist] { foreach chan [channels] { set cmds_today [getuser $user XTRA CMD_STATS_TODAY($chan)] if {$cmds_today != ""} { setuser $user XTRA CMD_STATS_TODAY($chan) } } } } ##################### voiceme logged ##################### proc voiceme:logged {from keyword arguments} { global black set nick $::vnick set chan $::vchan set hand $::vhand set host $::vhost set chan1 $chan if {[string match -nocase "*is logged*" $arguments] || [string match -nocase "*is authed*" $arguments]} { if {[setting:get $chan xonly] && [onchan $black(chanserv) $chan]} { putserv "PRIVMSG $black(chanserv) :voice $chan $nick" blacktools:tell $nick "prv" $hand $chan $chan1 voiceme.3 none } else { putserv "MODE $chan +v $nick" blacktools:tell $nick "prv" $hand $chan $chan1 voiceme.3 none } } unbind RAW - 330 voiceme:logged } proc voiceme:identified {from keyword arguments} { global black set nick $::vnick set chan $::vchan set hand $::vhand set chan1 $chan if {[string match -nocase "*has identified*" $arguments]} { putserv "MODE $chan +v $nick" blacktools:tell $nick "prv" $hand $chan $chan1 voiceme.3 none } unbind RAW - 307 voiceme:identified } ################################# reban ###################### proc rebanpublic {nick host hand chan} { global black if {[setting:get $chan xtools]} { chanserv:ignore_remove set host "$nick![getchanhost $nick $chan]" set getxtime [setting:get $chan xbantime] set getxlevel [setting:get $chan xbanlevel] if {$getxlevel == ""} { set getxlevel $black(chanserv:banlevel) } if {$getxtime == ""} { set getxtime $black(chanserv:bantime) } foreach ban [banlist $chan] { set reason [lindex $ban 1] if {[string match -nocase [string tolower [lindex $ban 0]] $host]} { putquick "PRIVMSG $black(chanserv) :ban $chan [lindex $ban 0] $getxtime $getxlevel $reason" } } } } ######################### XTOOLS ########################## proc toolspublic {chan type} { global botnick botname black if {![setting:get $chan xtools]} { return } if {[info exists black(notlogged)]} { return } chanserv:ignore_remove if {$type == "op"} { if {![onchan "$black(chanserv)" $chan] && ![botisop $chan]} { return } putquick "PRIVMSG $black(chanserv) :unban $chan $botname" putquick "PRIVMSG $black(chanserv) :op $chan $botnick" return } if {$type == "unban"} { putquick "PRIVMSG $black(chanserv) :unban $chan $botname" return } if {$type == "invite" || $type == "limit"} { putquick "PRIVMSG $black(chanserv) :invite $chan $botnick" return } if {$type == "key"} { putquick "PRIVMSG $black(chanserv) :invite $chan $botnick" return } } ######################### ABUSE ######################### proc abuse:ban:note {from keyword arguments} { global black botnick set chan [lindex [split $arguments] 1] if {[setting:get $chan invisible]} { return } abuse:suspend $chan if {[info exists black(abuse:$chan)]} { return } set replace(%chan%) $chan set time [unixtime] foreach user [userlist nm] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.abuse.2)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } set black(abuse:$chan) 1 blacktools:tell:dcc abuse.1 "$chan" } proc abuse:key:note {from keyword arguments} { global black botnick set chan [lindex [split $arguments] 1] if {[setting:get $chan invisible]} { return } abuse:suspend $chan if {[info exists black(abuse:$chan)]} { return } set replace(%chan%) $chan set time [unixtime] foreach user [userlist nm] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.abuse.6)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } set black(abuse:$chan) 3 blacktools:tell:dcc abuse.5 "$chan" } proc abuse:inviteonly:note {from keyword arguments} { global black botnick set chan [lindex [split $arguments] 1] if {[setting:get $chan invisible]} { return } abuse:suspend $chan if {[info exists black(abuse:$chan)]} { return } set replace(%chan%) $chan set time [unixtime] foreach user [userlist nm] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.abuse.4)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } set black(abuse:$chan) 2 blacktools:tell:dcc abuse.3 "$chan" } proc abuse:restricted:note {from keyword arguments} { global black botnick set chan [lindex [split $arguments] 1] if {[setting:get $chan invisible]} { return } abuse:suspend $chan if {[info exists black(abuse:$chan)]} { return } set replace(%chan%) $chan set time [unixtime] foreach user [userlist nm] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.abuse.11)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } set black(abuse:$chan) 5 blacktools:tell:dcc abuse.12 "$chan" } proc abuse:channelfull:note {from keyword arguments} { global black botnick set chan [lindex [split $arguments] 1] if {[setting:get $chan invisible]} { return } abuse:suspend $chan if {[info exists black(abuse:$chan)]} { return } set replace(%chan%) $chan set time [unixtime] foreach user [userlist nm] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.abuse.8)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } set black(abuse:$chan) 4 blacktools:tell:dcc abuse.7 "$chan" } proc delchan:note {hand chan reason} { global black botnick set replace(%chan%) $chan set replace(%reason%) $reason set replace(%hand%) $hand set time [unixtime] foreach user [userlist n] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { if {$user != $hand} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.delchan.1)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } } } proc suspendchan:note {hand chan reason} { global black botnick set replace(%chan%) $chan set replace(%reason%) $reason set replace(%hand%) $hand set time [unixtime] foreach user [userlist n] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { if {$user != $hand} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set black(notes:announce:$user) 1 set text [black:color:set $botnick $black(say.$getlang.suspend.2)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } } } proc get:abuse:num {} { global black set temp_num 0 set num 0 while {$temp_num == 0} { set get [find:note:num $num] if {$get == "$num"} { set num [expr $num + 1] } else { set temp_num 1 } } return $num } proc abuse:suspend {chan} { global black botnick if {![info exists black(abuse:count:$chan)]} { set black(abuse:count:$chan) 0 } incr black(abuse:count:$chan) if {$black(abuse:count:$chan) >= 30} { channel set $chan +inactive unset black(abuse:count:$chan) blacktools:tell:dcc abuse.9 "$chan" set replace(%msg.1%) $chan set time [unixtime] foreach user [userlist nm] { set nonotes [getuser $user XTRA NO_NOTES] if {$nonotes == ""} { set getlang [string tolower [getuser $user XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } set text [black:color:set $botnick $black(say.$getlang.abuse.10)] set file [open $black(notes_file) a] puts $file "INBOX $chan [get:abuse:num] 0 $user $time $botnick [string map [array get replace] $text]" close $file } } } } ################### CTCP VERSION REPLY ###################### proc ctcpvers {nickname hostname handle dest key arg} { global black if {![info exists ::versnick]} {return} set text [split $arg] set chan $::verschan set chan1 $chan set nick $::versnick blacktools:tell $nick "" [nick2hand $nick] $chan $chan1 vers.3 "$nickname $text" } ######################## AutoVoice ######################## proc autovonjoin {nick host hand chan} { if {[setting:get $chan autovoice]} { pushmode $chan +v $nick } } ######################## AutoOp ######################## proc autoponjoin {nick host hand chan} { if {[setting:get $chan autoop]} { pushmode $chan +o $nick } } ######################## get level ##################### proc blacktools:getlevelname {num hand} { global black set split_hand [split $hand ":"] set handle [lindex $split_hand 0] if {[validuser $handle]} { set getlang [string tolower [getuser $handle XTRA OUTPUT_LANG]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } } else { set getlang "[string tolower $black(default_lang)]" } switch $num { 1 { return $black(say.$getlang.level.1) } 2 { return $black(say.$getlang.level.2) } 3 { return $black(say.$getlang.level.3) } 4 { return $black(say.$getlang.level.4) } 5 { return $black(say.$getlang.level.5) } 6 { return $black(say.$getlang.level.6) } 7 { return $black(say.$getlang.level.7) } 8 { return $black(say.$getlang.level.8) } 9 { return $black(say.$getlang.level.9) } } } ############################ hello ######################### proc blacktools:hello {nick host hand} { global black botnick if {[validuser $nick]} { return } set mask [return_mask [return_host_num "hello" none $host] $host $nick] set time [unixtime] set getlang "[string tolower $black(default_lang)]" adduser $nick $mask adduser $nick "-telnet!*@*" chattr $nick "n|-" setuser $nick XTRA CHANMODIF(GLOBAL) $time:$botnick save blacktools:tell $nick "prv" $hand "" "" hello.1 $black(say.$getlang.level.1) blacktools:tell $nick "prv" $hand "" "" hello.2 "$nick $black(name) $black(vers)" blacktools:tell $nick "prv" $hand "" "" hello.3 "$mask" blacktools:tell $nick "prv" $hand "" "" hello.4 none } ######################## chanserv ignore ################### proc chanserv:ignore_remove {} { global black if {[info exists black(chanserv:ignore_host)]} { if {[isignore $black(chanserv:ignore_host)]} { killignore $black(chanserv:ignore_host) } } } ####################### getlastaction ####################### proc blacktools:getlastaction:join {nick host hand chan} { global black if {![isbotnick $nick]} { set gettime [unixtime] set black(lastaction:$chan) $gettime } return 0 } proc blacktools:getlastaction:part {nick host hand chan arg} { global black blacktools:getlastaction:join $nick $host $hand $chan } proc blacktools:getlastaction:sign {nick host hand chan arg} { global black blacktools:getlastaction:join $nick $host $hand $chan } proc blacktools:getlastaction:kick {nick host hand chan kicked reason} { global black blacktools:getlastaction:join $nick $host $hand $chan } proc blacktools:getlastaction:text {nick host hand chan arg} { global black botnick if {![isbotnick $nick]} { if {[validchan $chan]} { black:setlastaction $chan } } return 0 } proc black:setlastaction {chan} { global black set black(lastaction:$chan) [unixtime] } proc blacktools:getlastaction:me {nick host hand chan keyword arg} { global black blacktools:getlastaction:join $nick $host $hand $chan return } proc blacktools:getlastaction:split {nick host hand chan args} { global black blacktools:getlastaction:join $nick $host $hand $chan return 0 } proc blacktools:getlastaction:ban {nick host hand chan args} { global black blacktools:getlastaction:join $nick $host $hand $chan return 0 } ########################### protection list ##################### proc module:process:getbanhost {num} { global black switch $num { 1 { return "#1 - warn" } 2 { return "#2 - kick" } 3 { return "#3 - ban" } 4 { return "#4 - warn -> kick" } 5 { return "#5 - warn -> kick -> ban" } 6 { return "#6 - kick -> ban" } 7 { return "#7 - warn -> ban" } } } proc prot:module:process {nick host hand chan chan1 why except type number type1} { global black botnick set cmd_status [btcmd:status $chan $hand $type1 0] if {$cmd_status == "1"} { return } set num 0 set temp_num 0 set get_pers "" set get_word "" set except_add 0 set show_except $except set line1 [string toupper $type1] if {[string equal -nocase $type1 "securemode"]} { set line1 "SECUREMODE-EXCEPT" } if {[string equal -nocase $type1 "clonescan"]} { set line1 "CLONESCAN-EXCEPT" } if {$why == ""} { switch $type { 0 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr $type1 } 1 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick $type1 } 2 { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv $type1 } } return } if {![validchan $chan]} { blacktools:tell $nick $host $hand $chan $chan1 gl.novalidchan none return } switch -exact -- [string tolower $why] { add { if {$except == ""} { if {$type == "0"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr "$type1" } if {$type == "1"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick "$type1" } if {$type == "2"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv "$type1" } return } while {$temp_num == 0} { set get [addextra:find:num $chan $line1 $num] if {$get == "$num"} { set num [expr $num + 1] } else { set temp_num 1 } } if {[regexp {[:]} $except] && [string equal -nocase $line1 "BADWORD"]} { set split_check [split $except ":"] set get_pers [lindex $split_check 1] set get_word [lindex $split_check 0] } elseif {[regexp {^[+]} $except] && ([string equal -nocase $line1 "BADWORD"] || [string equal -nocase $line1 "BADQUITPART"] || [string equal -nocase $line1 "BADREALNAME"] || [string equal -nocase $line1 "BADHOST"] || [string equal -nocase $line1 "BADNICK"] || [string equal -nocase $line1 "ANTIPUB"] || [string equal -nocase $line1 "ANTISPAM"] || [string equal -nocase $line1 "BADIDENT"] || [string equal -nocase $line1 "ANTISPAM"])} { set except_add 1 } set findword [prot:findword $chan $line1 $show_except] if {$findword == "1"} { blacktools:tell $nick $host $hand $chan $chan1 gl.wordexists $show_except return } if {$get_pers != ""} { if {![regexp {^[1234567]} $get_pers]} { if {$type == "0"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr "$type1" return } if {$type == "1"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick "$type1" } if {$type == "2"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv "$type1" } } } set enc_chan [encoding convertto utf-8 $chan] set file [open $black(add_file) a] puts $file "$enc_chan $line1 $num $except" if {$get_pers != ""} { blacktools:tell $nick $host $hand $chan $chan1 $type1.7 "$num $get_pers $get_word" } elseif {$except_add == "1"} { if {[string equal -nocase $type1 "BADWORD"]} { blacktools:tell $nick $host $hand $chan $chan1 $type1.8 "$num [string map {"+" ""} $show_except]" } elseif {[string equal -nocase $type1 "BADNICK"]} { blacktools:tell $nick $host $hand $chan $chan1 $type1.11 "$num [string map {"+" ""} $show_except]" } else { blacktools:tell $nick $host $hand $chan $chan1 $type1.10 "$num [string map {"+" ""} $show_except]" } } else { blacktools:tell $nick $host $hand $chan $chan1 $type1.6 "$num $show_except" } close $file } list { array set protlist [list] set userlang [string tolower [getuser $hand XTRA OUTPUT_LANG]] if {$userlang == ""} { set userlang "[string tolower $black(default_lang)]" } set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/prot_temp.$timestamp" set file [open $black(add_file) "r"] set w [read -nonewline $file] close $file set data [split $w "\n"] foreach line $data { set read_chan [lindex [split $line] 0] set enc_chan [encoding convertfrom utf-8 $read_chan] set type [lindex [split $line] 1] if {[string match -nocase $enc_chan $chan] && [string match -nocase $line1 $type]} { set msg_num [lindex [split $line] 2] set except [lrange [split $line] 3 end] if {[string equal -nocase $type "BADWORD"]} { set split_except [split $except ":"] if {[lindex $split_except 1] != ""} { set the_except [join [lindex $split_except 0]] set banhost [module:process:getbanhost [lindex $split_except 1]] set text [black:color:set $hand $banhost] lappend protlist($msg_num) $the_except \[$text\] } elseif {[regexp {^[+]} $except]} { set text [black:color:set $hand $black(say.$userlang.gl.protexcept)] lappend protlist($msg_num) [string map {"+" ""} $except] \[$text\] } else { lappend protlist($msg_num) $except } } else { if {[regexp {^[+]} $except]} { set text [black:color:set $hand $black(say.$userlang.gl.protexcept)] lappend protlist($msg_num) [string map {"+" ""} $except] \[$text\] } else { lappend protlist($msg_num) $except } } } } set tempwrite [open $temp w] foreach msg [lsort -integer -increasing [array names protlist]] { puts $tempwrite "$msg [join $protlist($msg)]" } close $tempwrite set file [open $temp "r"] set w [read -nonewline $file] close $file set data [split $w "\n"] file delete $temp module:getinfo $nick $host $hand $chan $chan1 $type $data "$type1" "0" $number } del { if {![regexp {^[0-9]} $number]} { if {$type == "0"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr "$type1" } if {$type == "1"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick "$type1" } if {$type == "2"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_priv "$type1" } return } set ret [addextra:find:num $chan $line1 $number] if {$ret == 0} { blacktools:tell $nick $host $hand $chan $chan1 $type1.4 $number return } set file [open $black(add_file) "r"] set timestamp [clock format [clock seconds] -format {%Y%m%d%H%M%S}] set temp "$black(tempdir)/prot_temp.$timestamp" set tempwrite [open $temp w] while {[gets $file line] != -1} { set read_num [lindex [split $line] 2] set read_type [lindex [split $line] 1] set read_chan [lindex [split $line] 0] set enc_chan [encoding convertfrom utf-8 $read_chan] if {[string equal $number $read_num] && [string equal -nocase $enc_chan $chan] && [string equal -nocase $read_type $line1]} { continue } else { puts $tempwrite $line } } close $tempwrite close $file file rename -force $temp $black(add_file) blacktools:tell $nick $host $hand $chan $chan1 $type1.5 $number } default { if {$type == "0"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr "$type1" } if {$type == "1"} { blacktools:tell $nick $host $hand $chan $chan1 gl.instr_nick "$type1" } } } } proc prot:findword {chan type word} { global black set found_it 0 set file [open $black(add_file) "r"] set w [read -nonewline $file] close $file set data [split $w "\n"] foreach line $data { set read_chan [lindex [split $line] 0] set enc_chan [encoding convertfrom utf-8 $read_chan] set t [lindex [split $line] 1] set w [join [lrange [split $line] 3 end]] if {[string equal -nocase $enc_chan $chan] && [string match -nocase $t $type] && [string equal -nocase $word $w] && ![regexp {^[+]} $w] && ![regexp {^[+]} $word]} { set found_it 1 } elseif {[string equal -nocase $enc_chan $chan] && [string match -nocase $t $type] && [string equal -nocase $word $w] && [regexp {^[+]} $w] && [regexp {^[+]} $word]} { set found_it 1 } } return $found_it } ################################# forward ################################ proc forward:redirect {nick host hand arg} { global black set message [join [lrange [split $arg] 0 end]] if {![validuser $hand]} { foreach chan [channels] { if {[setting:get $chan forward]} { blacktools:tell $nick "chan" $hand $chan $chan forward.1 "$nick $message" } } } } ################################# expirebans ############################## proc blacktools:expirebans {min hour day mon year} { global black set channels "" foreach chan [channels] { if {[channel get $chan ban-time] != "0"} { continue } if {[setting:get $chan expirebans] == "0"} { continue } lappend channels $chan } if {$channels != ""} { blacktools:expire:chan $channels 0 } } proc blacktools:expire:chan {channels num} { global black set chan [lindex $channels $num] set gettime [setting:get $chan expirebans] if {$gettime == ""} { set gettime $black(default:bantime) } if {$gettime == "0"} { set nextc [expr $num + 1] if {[lindex $channels $nextc] != ""} { blacktools:expire:chan $channels $nextc } return } set gettime [time_return_minute $gettime] set seconds [expr $gettime * 60] set unixtime [unixtime] set banlist [chanbans $chan] set maxtime [expr $unixtime + $seconds] foreach ban $banlist { if {[blacktools:sticky [lindex $ban 0] $chan] == 1} { continue } if {[isbansticky [lindex $ban 0] $chan]} { continue } if {[blacktools:isgag [lindex $ban 0] $chan] == 1} { continue } set chanstime [expr $unixtime + [lindex $ban 2]] if {$maxtime <= $chanstime} { pushmode $chan -b [lindex $ban 0] } } set nextc [expr $num + 1] if {[lindex $channels $nextc] != ""} { blacktools:expire:chan $channels $nextc } } ################################ get lastban ##################################### proc blacktools:getlastban {} { global black set lastban "" foreach b $black(bans) { if {$b != ""} { set expire [lindex [split $b] 5] if {$expire != 0} { set dif [expr $expire - [unixtime]] if {$dif > 0 || $dif == 0} { if {$lastban == ""} { set lastban $dif continue } if {$lastban >= $dif} { set lastban $dif continue } } else { set lastban 60 break } } } } if {$lastban == ""} { set lastban -1 } return $lastban } if {[file exists $black(bans_file)]} { if {![info exists black(bans)]} { set black(bans) [blacktools:banlist:all] } if {![info exists black(lastban_set)]} { set lastban [blacktools:getlastban] if {$lastban == "-1"} { set black(lastban_set) 1 } else { set black(lastban) $lastban foreach tmr [utimers] { if {[string match "*blacktools:autounban*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } utimer $black(lastban) [list blacktools:autounban] } } } proc blacktools:ub:setlast {expire} { global black set lastban "" if {[info exists black(lastban)]} { if {$expire != 0} { set dif [expr $expire - [unixtime]] if {$dif > 0} { if {$black(lastban) >= $dif} { set lastban $dif } } } } else { set lastban [expr $expire - [unixtime]] } if {$lastban != ""} { if {$lastban < 0} { set lastban 60 } set black(lastban) $lastban foreach tmr [utimers] { if {[string match "*blacktools:autounban*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } utimer $black(lastban) [list blacktools:autounban] } return 1 } ################################ protection order ############################### proc blacktools:protect:me {nick host hand chan keyword arg} { if {[string equal -nocase $keyword "ACTION"]} { blacktools:protect:pub $nick $host $hand $chan $arg } } proc blacktools:protect:pub {nick host hand chan arg} { global black set pub_protect "antipub badword longtext repetitivechars color bold underline caps floodchan antirepeat" foreach prot $pub_protect { if {[string equal -nocase $prot "antipub"]} { if {[setting:get $chan antipub]} { set return [antipub:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "badword"]} { if {[setting:get $chan antibadword]} { set return [antibadword:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "longtext"]} { if {[setting:get $chan antilongtext]} { set return [antilongtext:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "repetitivechars"]} { if {[setting:get $chan repetitivechars]} { set return [repetitivechars:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "color"]} { if {[setting:get $chan anticolor]} { set return [anticolor:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "bold"]} { if {[setting:get $chan antibold]} { set return [antibold:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "underline"]} { if {[setting:get $chan antiunderline]} { set return [antiunderline:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "caps"]} { if {[setting:get $chan anticaps]} { set return [anticaps:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "floodchan"]} { if {[setting:get $chan antichanflood]} { set return [antifloodchan:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } if {[string equal -nocase $prot "antirepeat"]} { if {[setting:get $chan antirepeat]} { set return [antirepeat:protect $nick $host $hand $chan $arg] if {$return == "1"} { break } } } } } ############################## ipcidr ############################# proc ipcidr {cidrAddr addr} { global {cidr-support} if {[info exists {cidr-support}]} { if {${cidr-support} == "1"} { set getip [lindex [split $cidrAddr "/"] 0] set getcidr [lindex [split $cidrAddr "/"] 1] set cidr [matchcidr $getip $addr $getcidr] return $cidr } else { return 0 } } else { return 0 } } ######################### dns search ############################## proc blacktools:dns:auto_ban {nick host vhost chan realname} { global black set check_dns [dns:checkexcept $host] if {$check_dns == "1"} { blacktools:auto:ban_act $nick $host "" $chan $realname return } dnslookup $vhost dns:resolve:auto_ban $vhost $nick $host $chan $realname } proc dns:resolve:auto_ban {ip host status hostip nick fullhost chan realname} { if {!$status} { blacktools:auto:ban_act $nick $fullhost "" $chan $realname } elseif {[string tolower $ip] == [string tolower $hostip]} { blacktools:auto:ban_act $nick $fullhost $hostip $chan $realname } else { blacktools:auto:ban_act $nick $fullhost $ip $chan $realname } return 0 } proc blacktools:dns:join {nick host vhost hand chan realname} { global black set check_dns [dns:checkexcept $host] if {$check_dns == "1"} { blacktools:join:autoban $nick "" "" $hand $chan $host $realname return } if {[regexp {[/]} $host]} { blacktools:join:autoban $nick "" "" $hand $chan $host $realname return } dnslookup $vhost dns:resolve:join $vhost $nick $host $hand $chan $realname } proc blacktools:dns:sb {bhost what nick hand host vhost chan chan1 type cmd entry} { global black set check_dns [dns:checkexcept $bhost] if {$check_dns == "1"} { sb:act $bhost $what $nick $hand $host "" $chan $chan1 $type $cmd $entry return } dnslookup $vhost dns:resolve:sb $vhost $what $nick $hand $bhost $vhost $chan $chan1 $type $cmd $entry } proc dns:resolve:sb {ip host status hostip what nick hand fullhost vhost chan chan1 type cmd entry} { global black if {!$status} { sb:act $fullhost $what $nick $hand $host "" $chan $chan1 $type $cmd $entry } elseif {[string tolower $ip] == [string tolower $hostip]} { sb:act $fullhost $what $nick $hand $host $host $chan $chan1 $type $cmd $entry } else { sb:act $fullhost $what $nick $hand $host $ip $chan $chan1 $type $cmd $entry } return 0 } proc blacktools:dns:ub {user mask nick hand host vhost chan chan1 type gl cmd whois link id prv} { global black set check_dns [dns:checkexcept $mask] if {$check_dns == "1"} { ub:act $user $mask $nick $hand "" "" $chan $chan1 $type $gl $cmd $whois $link $id $prv return } if {$id == "id"} { ub:act $user $mask $nick $hand "" "" $chan $chan1 $type $gl $cmd $whois $link $id $prv return } dnslookup $vhost dns:resolve:ub $vhost $user $mask $nick $hand $chan $chan1 $type $gl $cmd $whois $link $id $prv } proc dns:resolve:ub {ip host status hostip user mask nick hand chan chan1 type gl cmd whois link id prv} { global black if {!$status} { ub:act $user $mask $nick $hand "" "" $chan $chan1 $type $gl $cmd $whois $link $id $prv } elseif {[string tolower $ip] == [string tolower $hostip]} { ub:act $user $mask $nick $hand $host $host $chan $chan1 $type $gl $cmd $whois $link $id $prv } else { ub:act $user $mask $nick $hand $ip $host $chan $chan1 $type $gl $cmd $whois $link $id $prv } return 0 } proc dns:resolve:join {ip host status hostip nick fullhost hand chan realname} { if {!$status} { blacktools:join:autoban $nick $hostip "" $hand $chan $fullhost $realname } elseif {[string tolower $ip] == [string tolower $hostip]} { blacktools:join:autoban $nick $hostip $host $hand $chan $fullhost $realname } else { blacktools:join:autoban $nick $ip $host $hand $chan $fullhost $realname } return 0 } proc dns:checkexcept {host} { global black set valid_except 0 if {$black(dns_onjoin) == 0} { return 1 } set host [lindex [split $host "@"] 1] set check_ipv4 [regexp {^[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$} $host] set check_ipv6 [regexp {^([0-9A-Fa-f]{0,4}:){2,7}([0-9A-Fa-f]{1,4}$|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.|$)){4})$} $host] if {$check_ipv4 == 1 || $check_ipv6 == 1} {return 1} foreach h $black(dns:host_excepts) { if {[string match -nocase $h $host]} { set valid_except 1 } } return $valid_except } ################################ Balist FULL ############################## proc blacktools:banlistfull {from keyword arguments} { global black botnick {net-type} set chanbans "" set chan [lindex [split $arguments] 1] set getlang [string tolower [setting:get $chan lang]] if {$getlang == ""} { set getlang "[string tolower $black(default_lang)]" } if {${net-type} == "2"} { set maxbans 45 } elseif {${net-type} == "3"} { set maxbans 100 } elseif {${net-type} == "1"} { set maxbans 64 } elseif {${net-type} == "0"} { set maxbans 100 } else { set maxbans 45 } set banlist [lsort -index 2 -integer -decreasing [chanbans $chan]] set llength_banlist [llength $banlist] if {[llength $banlist] > 0} { foreach ban $banlist { if {[blacktools:sticky [lindex $ban 0] $chan] == 1} { continue } if {[isbansticky [lindex $ban 0] $chan]} { continue } lappend chanbans [lindex $ban 0] } } if {$chanbans != ""} { set length_maxbans [llength [join $chanbans]] if {$length_maxbans > $maxbans} { set bans_to_remove [expr [expr $length_maxbans - $maxbans] + $black(fullbanlist_remove)] } else { set bans_to_remove $black(fullbanlist_remove) } if {![info exists black(onotice:$chan:fullbanlist)]} { set replace(%maxbans%) $maxbans set replace(%numbans%) $llength_banlist set replace(%chan%) $chan set text [black:color:set $botnick $black(say.$getlang.gl.fullbans)] putserv "NOTICE @$chan :[string map [array get replace] $text]" foreach tmr [utimers] { if {[string match "*unset:mode_time:fullbanlist $chan*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } putserv "MODE $chan +$black(fullbanlist_modes)" utimer $black(fullbanlist_hold_mode) [list unset:mode_time:fullbanlist $chan] } set black(onotice:$chan:fullbanlist) 1 set banlist [lrange [join $chanbans] 0 [expr $bans_to_remove - 1]] foreach ban $banlist { pushmode $chan -b $ban } foreach tmr [utimers] { if {[string match "*unset:flag:fullbanlist $chan*" [join [lindex $tmr 1]]]} { killutimer [lindex $tmr 2] } } utimer 30 [list unset:flag:fullbanlist $chan] } } proc unset:mode_time:fullbanlist {chan} { global black putserv "MODE $chan -$black(fullbanlist_modes)" } proc unset:flag:fullbanlist {chan} { global black if {[info exists black(onotice:$chan:fullbanlist)]} { unset black(onotice:$chan:fullbanlist) } } ####################### Channel TCL Settings Save ######################### proc blacktools:settings:autosave {} { global black set channels "" foreach chan [channels] { if {[setting:get $chan settingsaved]} { continue } else { lappend channels $chan } } if {$channels != ""} { blacktools:settings:save $channels 0 } } proc blacktools:settings:save {channels num} { global black set chan [lindex $channels $num] #antipub foreach line $black(antipubword) { blacktools:setting:add "ANTIPUB" $chan $line } #badhost foreach line $black(badhostword) { blacktools:setting:add "BADHOST" $chan $line } #antibadword foreach line $black(antibadword) { blacktools:setting:add "BADWORD" $chan $line } #antibadquitpart foreach line $black(badquitpartwords) { blacktools:setting:add "BADQUITPART" $chan $line } #antispam foreach line $black(spamword) { blacktools:setting:add "ANTISPAM" $chan $line } #badrealname foreach line $black(badfwords) { blacktools:setting:add "BADREALNAME" $chan $line } #badnick foreach line $black(badnickwords) { blacktools:setting:add "BADNICK" $chan $line } #badident foreach line $black(badidentwords) { blacktools:setting:add "BADIDENT" $chan $line } set j [expr $num + 1] setting:set $chan +settingsaved "" if {[lindex $channels $j] != ""} { blacktools:settings:save $channels $j } } proc blacktools:setting:add {protname chan text} { global black set num 0 set temp_num 0 while {$temp_num == 0} { set get [addextra:find:num $chan $protname $num] if {$get == "$num"} { set num [expr $num + 1] } else { set temp_num 1 } } set findword [prot:findword $chan $protname $text] if {$findword != "1"} { set enc_chan [encoding convertto utf-8 $chan] set file [open $black(add_file) a] puts $file "$enc_chan $protname $num $text" close $file } } ################# ########################################################################### ## END ## ###########################################################################