Code: Select all
<RockBabe> [16:38] can't read "sl_bxsimul": no such variable
<RockBabe> while executing
<RockBabe> "if {$sl_bxsimul} {
<RockBabe> bind raw - 001 sl_bxserverjoin
<RockBabe> if {![info exists sl_bxonestack]} {
<RockBabe> set sl_bxonestack 0
<RockBabe> }
<RockBabe> if {![info exists sl_bxversion..."
<RockBabe> (file "scripts/sentinel.tcl" line 1115)
<RockBabe> invoked from within
<RockBabe> "source scripts/sentinel.tcl"
<RockBabe> (file "eggdrop.conf" line 1371)
then i have used few clone ip's to test this using control char, bold etc, but it didn't trigger at all..set sl_locktimes {i:30 m:60 r:60}
set sl_txflood 6:15
set sl_txlength 180
set sl_nclength 1
set sl_linecap 50:15
Code: Select all
if { $network == "QuakeNet" } {
set sl_locktimes {i:30 m:30 r:300}
} elseif { $network == "euIRCnet" } {
set sl_locktimes {i:30 m:30 R:300}
} else {
set sl_locktimes {i:120 m:30}
}
Looks as though an argument was added to the masktype command in eggdrop 1.6.20 allowing selection of a hostmask type, but the new default type is different from what the command would've returned prior to 1.6.20, which can break compatibility with scripts that expect it to behave as documented in 1.6.19 and earlier.arvent wrote:I have set it with set sl_masktype 2 in order to get this ban mask: *!*ident@*.domain.com, but instead get the: *!**ident@*.domain.com.
Am I doing something wrong and the most important what can I do to fix it?
Code: Select all
2 {return *!*[lindex [split [maskhost $uhost] "!"] 1]}
Code: Select all
2 {return *!*[lindex [split [maskhost $uhost 0] "!"] 1]}