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.
General support and discussion of Eggdrop bots.
evotech
Voice
Posts: 8 Joined: Fri Feb 18, 2011 8:51 am
Post
by evotech » Wed Apr 13, 2011 6:19 am
channel add #Honreplays {
chanmode +tn
idle-kick 0
stopnethack-mode 0
revenge-mode 0
need-op {}
need-invite {}
need-key {}
need-unban {}
need-limit {}
flood-chan 15:60
flood-ctcp 3:60
flood-join 10:1
flood-kick 3:10
flood-deop 3:10
flood-nick 5:60
aop-delay 0:0
ban-type 5
ban-time 120
exempt-time 60
invite-time 60
-enforcebans
+dynamicbans
+userbans
+autoop
-autohalfop
-bitch
+greet
-protectops
-protecthalfops
+protectfriends
+dontkickops
-statuslog
-revenge
-revengebot
+autovoice
-secret
+shared
+cycle
-seen
-inactive
+dynamicexempts
+userexempts
+dynamicinvites
+userinvites
-nodesynch
-static
}
With this, it still requires me to dcc chat the bot and tell it .chanset #honreplays -inactive, before it joins the channel, but inactive is already there, why doesn't it automatically join it?
Madalin
Master
Posts: 310 Joined: Fri Jun 24, 2005 11:36 am
Location: Constanta, Romania
Contact:
Post
by Madalin » Thu Jan 31, 2013 4:34 pm
Don`t know whats causing that but i can give you a small code so that you wont need to dcc chat the eggdrop and always use .chanset #channel -inactive. With this code the eggdrop will that for you.
Code: Select all
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
foreach chan [channels] {
utimer 20 [list channel set $chan -inactive]
}
}