Page 1 of 1

Help Setting something on IRCD

Posted: Sun Oct 10, 2004 1:43 am
by Jay123
I want to set this option for my ircd so like when any user that connects to my server join a channel automatically. Is there any way to do like sajoin on connect or something? Please help. :twisted:

Posted: Sun Oct 10, 2004 2:07 am
by Winbots

Code: Select all

auto-join #welcome;
in your set block :)

Posted: Sun Oct 10, 2004 2:19 am
by Jay123
like this:?

Code: Select all

set {

auto-join #welcome;
	
};

Posted: Sun Oct 10, 2004 2:22 am
by codemastr
No.

set {
auto-join "#welcome";
};

The quotes are necessary because # is a comment character.