| View previous topic :: View next topic |
| Author |
Message |
Shan Voice
Joined: 21 Oct 2008 Posts: 3
|
Posted: Tue Oct 21, 2008 7:26 am Post subject: Odd eggdrop behavior (flood-kick, -k etc) |
|
|
I don't have any custom scripts installed that could cause these, running v1.6.17 with alltools.tcl and action.fix.tcl.
I've set flood-kick to 0 everywhere, yet the bot still randomly floodkicks (Sometimes because of flood, but now once just during normal discussion) people that are not set as userflag f (friendly).
Also, every time I reop the bot (incase it was deopped, due to disconnect etc) it will -k channels if +k is set. Channelmode is -im+nt.. so should I set it as -im+ntk <key> to avoid this?
Any help?  |
|
| Back to top |
|
 |
Sir_Fz Revered One

Joined: 27 Apr 2003 Posts: 3793 Location: Lebanon
|
Posted: Tue Oct 21, 2008 2:57 pm Post subject: |
|
|
If flood-kick is set to 0 then it won't react to text floods, you probably have some script doing the kicks. Same with the channel mode, if -k is not specified then it will never set the channel to -k. _________________ Follow me on GitHub
- Opposing
Public Tcl scripts |
|
| Back to top |
|
 |
Shan Voice
Joined: 21 Oct 2008 Posts: 3
|
Posted: Fri Nov 14, 2008 4:32 pm Post subject: |
|
|
| Sir_Fz wrote: | | If flood-kick is set to 0 then it won't react to text floods, you probably have some script doing the kicks. Same with the channel mode, if -k is not specified then it will never set the channel to -k. |
Yeah but the problem is that I don't :< I do have few scripts but I went through the code and there simply are no kick/flood/antikey functions |
|
| Back to top |
|
 |
speechles Revered One

Joined: 26 Aug 2006 Posts: 1398 Location: emerald triangle, california (coastal redwoods)
|
Posted: Fri Nov 14, 2008 6:33 pm Post subject: |
|
|
try .chanset #yourchan flood-chan 0:0 to control channel msg flood behavior. flood-kick is for a flood of kicks... | eggdrop.conf wrote: | # flood-kick 3:10
# Set here how many kicks in how many seconds from one host constitutes
# a flood. Setting this to 0 or 0:0 disables kick flood protection for
# the channel.
# flood-chan 10:60
# Set here how many channel messages in how many seconds from one
# host constitutes a flood. Setting this to 0 or 0:0 disables
# flood protection for the channel. |
And if the bot is removing the key, you must have .chanset #yourchan chanmode +nt-k or something similar. To fix it simply type .chanset #yourchan chanmode -im+nt. Make sure you do this during partyline chat with your bot. The static channel settings within eggdrop.conf ONLY apply for the first iteration of the bots life, when you first created it and started it up. All changes after this must be done on the partyline. If you edit the eggdrop.conf channel settings and .rehash/.restart expecting a change you won't see any, they will have no effect... | Quote: | # Add each static channel you want your bot to sit in using the following
# command. There are many different possible settings you can insert into
# this command, which are explained below.
#
# channel add #lamest {
# chanmode "+nt-likm" |
If you followed that example, this is your problem. You cannot afterwards edit the eggdrop.conf section and remove that k. You must use the partyline and use the .chanset #yourchan chanmode method mentioned above. _________________ speechles' eggdrop tcl archive |
|
| Back to top |
|
 |
Shan Voice
Joined: 21 Oct 2008 Posts: 3
|
Posted: Tue Nov 18, 2008 8:28 pm Post subject: |
|
|
| speechles wrote: | try .chanset #yourchan flood-chan 0:0 to control channel msg flood behavior. flood-kick is for a flood of kicks... | eggdrop.conf wrote: | # flood-kick 3:10
# Set here how many kicks in how many seconds from one host constitutes
# a flood. Setting this to 0 or 0:0 disables kick flood protection for
# the channel.
# flood-chan 10:60
# Set here how many channel messages in how many seconds from one
# host constitutes a flood. Setting this to 0 or 0:0 disables
# flood protection for the channel. |
And if the bot is removing the key, you must have .chanset #yourchan chanmode +nt-k or something similar. To fix it simply type .chanset #yourchan chanmode -im+nt. Make sure you do this during partyline chat with your bot. The static channel settings within eggdrop.conf ONLY apply for the first iteration of the bots life, when you first created it and started it up. All changes after this must be done on the partyline. If you edit the eggdrop.conf channel settings and .rehash/.restart expecting a change you won't see any, they will have no effect... | Quote: | # Add each static channel you want your bot to sit in using the following
# command. There are many different possible settings you can insert into
# this command, which are explained below.
#
# channel add #lamest {
# chanmode "+nt-likm" |
If you followed that example, this is your problem. You cannot afterwards edit the eggdrop.conf section and remove that k. You must use the partyline and use the .chanset #yourchan chanmode method mentioned above. |
Hey, thanks! I was indeed editing the conf file. Did changes with partyline, let's see if it helps.
*hug* |
|
| Back to top |
|
 |
|