View previous topic :: View next topic |
Author |
Message |
Jerry Voice
Joined: 23 Nov 2006 Posts: 9
|
Posted: Fri Nov 24, 2006 2:29 pm Post subject: Question |
|
|
Ok everytime my bot joins the channel, it always clears the banlist. How do I set it so that all it does it runs script, and doesnt unban/unexcept/uninvite/unmode stuff? All I want it to do is run some scripts. Thats all. |
|
Back to top |
|
 |
Alchera Revered One

Joined: 11 Aug 2003 Posts: 3344 Location: Ballarat Victoria, Australia
|
Posted: Fri Nov 24, 2006 5:53 pm Post subject: |
|
|
Look at your channel settings:
Specifically look at the detailed information in eggdrop.conf regarding enforcebans/dynamicbans. I'd advise that you set enforcebans off.
As your bot is already running you'd need do the following via DCC Chat as well as modifying your configuration file if you wish to add more dynamic channels.
Code: | .chanset <channel> <settings> |
_________________ Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM |
|
Back to top |
|
 |
nml375 Revered One
Joined: 04 Aug 2006 Posts: 2858
|
Posted: Fri Nov 24, 2006 8:05 pm Post subject: |
|
|
You might also wish to check "userbans" in the same channel settings as in the previous post (basically makes your bot "allow" others to add bans, and not bounce 'em immediately).
For any other mode your bot keeps bouncing, see "chanmode" (aka Protect modes); anything set + here is enforced, anything set - here is removed when seen.
When using dynamicbans/invites/exempts, see values for ban-time/exempt-time/invite-time also.
Also, there are separate user/dynamic-settings for invite- and exemptlists.
To make your bot as passive as possible, I'd suggest something like this:
Code: | -enforcebans
+userbans
+userexempts
+userinvites
+dynamicbans
+dynamicexempts
+dynamicinvites
ban-time 0
exempt-time 0
invite-time 0
chanmode "" |
Probably a few more settings I overlooked, tho these should make your bot care less for bans/invites/exempts and modes in your channel..
PS. invites and exempts might not be supported on all irc networks, in these cases, just disregard these settings DS _________________ NML_375, idling at #eggdrop@IrcNET |
|
Back to top |
|
 |
Jerry Voice
Joined: 23 Nov 2006 Posts: 9
|
Posted: Sat Nov 25, 2006 12:30 am Post subject: |
|
|
Never mind i got it. Thanks ^__^ |
|
Back to top |
|
 |
|