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.

How can i disable flooding?

Old posts that have not been replied to for several years.
Locked
d
docent

How can i disable flooding?

Post by docent »

So i'm op of private channel. I don't want my eggdrop to flood anyone - floodin n my channel is allowed. So i did next steps. I edited configurationf file of eggdrop..:

konf:
---------------------
#### CHANNEL #####

channel add #GODIA {
/some stuff, which i cutted out/
flood-chan 0:0
flood-deop 0:0
flood-kick 0:0
flood-join 0:0
flood-ctcp 0:0
}
/another stuff cutted out/

set flood-msg 0:0
set flood-ctcp 0:0


and i edited sentinel.tcl...:
------------------
/some stuff cutted out/

# Channel avalanche/tsunami flood.
set sl_avflood 0:0
# Channel text flood.
set sl_txflood 0:0

------------------

and i rehased my eggdrop... and that doesn't work.. :|

so the question is how to disable text flood...?
s
shadough
Voice
Posts: 12
Joined: Mon Oct 06, 2003 4:28 pm
Location: Virginia
Contact:

Post by shadough »

Try setting them all to 0 including the global settings and then take sentinel out of netset.tcl
User avatar
gumbydammit
Master
Posts: 311
Joined: Thu Sep 05, 2002 4:52 pm
Location: Canada
Contact:

Post by gumbydammit »

you need to use chanset to change already exsisting channels..

.chanset #room flood-chan 0:0
and so on... check .chanfino #room to see what your current settings are
a.k.a. hellios
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Also, it's:

Code: Select all

channel set #GODIA flood-chan 0:0 
channel set #GODIA flood-deop 0:0 
channel set #GODIA flood-kick 0:0 
channel set #GODIA flood-join 0:0 
channel set #GODIA flood-ctcp 0:0
not what you've posted..
Once the game is over, the king and the pawn go back in the same box.
Locked