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.

Eggdrop doesnt automaticly join channels assigned

General support and discussion of Eggdrop bots.
Post Reply
e
evotech
Voice
Posts: 8
Joined: Fri Feb 18, 2011 8:51 am

Eggdrop doesnt automaticly join channels assigned

Post by evotech »

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?
User avatar
Madalin
Master
Posts: 310
Joined: Fri Jun 24, 2005 11:36 am
Location: Constanta, Romania
Contact:

Post by Madalin »

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]
	}
}
Post Reply