This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 9 matches

by grumpy
Fri Jul 24, 2020 4:56 pm
Forum: Eggdrop Help
Topic: Eggdrop DCC chat issues
Replies: 2
Views: 4401

There's a few things this could be, take a look at this http://eggwiki.org/Telnet should help :wink:
by grumpy
Sat Jun 20, 2020 9:52 am
Forum: Script Requests
Topic: multi lines max text length within time frame
Replies: 41
Views: 21569

Code: Select all

  # they haven't gone over the limit, lets set a timer
  utimer $::bflood(unsettime) [list unset ::bflood($chan:$nick)]
try commenting out this line, where it sets an other time after checking for them going over the limit. Should reduce it a bit :oops: hopefully
by grumpy
Sat Jun 20, 2020 6:17 am
Forum: Script Requests
Topic: multi lines max text length within time frame
Replies: 41
Views: 21569

Your right :!: it dosen't actually seem to do anything if they go over the limit the first time around set ::bflood(maxlength) 300 set ::bflood(unsettime) 5 bind pub - * pubm:byteflood proc pubm:byteflood {nick host hand chan text} { # ignore if bot not opped, ignore if its a chanop, ignore if the u...
by grumpy
Fri Jun 19, 2020 8:42 am
Forum: Script Requests
Topic: multi lines max text length within time frame
Replies: 41
Views: 21569

set bflood(maxlength) 300 set bflood(unsettime) 5 bind pub - * pubm:byteflood proc pubm:byteflood {nick host hand chan text} { global bflood # ignore if bot not opped, ignore if its a chanop, ignore if the user has +bfmo globally or +fmo for the channel if {(![botisop $chan]) || ([isop $nick $chan]...
by grumpy
Fri Jun 19, 2020 8:27 am
Forum: Script Requests
Topic: multi lines max text length within time frame
Replies: 41
Views: 21569

Yeah, i don't think bytelength is what your looking for [13:21:00] <+afk-dead> this is going to be over 200 lines of text hopefully? thought am not sure how long the line needs to be to trigger a bytes flood or not. Maybe just keep typing and see what happends? thats usually the best way? [13:21:01]...
by grumpy
Thu Jun 18, 2020 8:37 pm
Forum: Script Requests
Topic: multi lines max text length within time frame
Replies: 41
Views: 21569

Not really sure about the error, I kind of just wrote an example of using string bytelength while replying :oops: Maybe add a utimer unset for 5 seconds? and keep a byte count against the hostmask, so when they go over the limit they get banned. :? set byteflood(count) 300 set byteflood(time) 5 bind...
by grumpy
Thu Jun 18, 2020 1:25 pm
Forum: Script Requests
Topic: multi lines max text length within time frame
Replies: 41
Views: 21569

% string bytelength wrong # args: should be "string bytelength string" % string bytelength "teststring" 10 % https://www.tcl.tk/man/tcl8.3/TclCmd/string.htm#M5 Maybe something like the following :arrow: dont need to check for isbotnick set byte_flood 300 bind pubm - * pubm:bytef...
by grumpy
Thu Apr 23, 2020 8:48 am
Forum: Script Support & Releases
Topic: mc.main.tcl
Replies: 2
Views: 4085

RE: mc.main.tcl

Is this from MC responde or public commands? :?:
by grumpy
Sun Mar 05, 2017 8:36 am
Forum: Scripting Help
Topic: anti ban or nobans
Replies: 2
Views: 5555

Please read the eggdrop documents
The channels module will probably help with this issue;
see settings/mod.channels