I'm trying to figure out how to make the eggdorop bot flood, currently using UnrealIRCD and i've set modes to the bot as +ago - so it can flood without getting "excess flood" quit crap.
Does anyone know where to go from here... i've tried googling and searched on these forums - yet 90% are like anti-spam or anti-flood protection which is fair enough.
I'm just setting up a trivia and i'm afraid the moment it floods lots (i want it to flood), it'll flood quit.
I know this is stupid to ask around here, but i dunno where else to go.
proc putnow { args } {
putdccraw 0 [expr {[string length [lindex $args 0]] +2}] "[lindex $args 0]\r\n"
}
# uses args and lindex to keep the -next of putquick from causing errors
# it is eliminated as it will be the second lindex position of args. It is also
# no longer possible for -next to be of any use, and is why we eliminate it.
# This allows eggdrop to serve messages instantly without a queue system.
# The expr+2 is to allow room for the newline which may be required on
# some ircds.
Add this procedure to your script and change all PUTQUICK, PUTHELP and PUTSERV to PUTNOW and watch what happens.
nano does have a search'n'replace feature, albeit somewhat hidden.
Default binding is F14 or Meta-R (depending on your terminal setup, this might be Esc-r).