Page 1 of 1

[SOLVED] set::auto-join - set::oper-auto-join

Posted: Wed Oct 02, 2024 6:57 pm
by fearcry
Hello,
please can someone give me a code example how to auto-join a channel with password (+k)?
There should be a Parameter for the JOIN Command.

Example
oper-auto-join "#chan <key>"; // doesn't work
oper-auto-join "#chan" <key>; // doesn't work

I need an example of the unrealircd-config set block.



cheers

Re: set::auto-join - set::oper-auto-join

Posted: Thu Oct 03, 2024 9:06 am
by PeGaSuS
You can't do such thing inside UnrealIRCD's configuration.

You also don't need to password protect channels that are for opers only. You just need to set them to +O.

Code: Select all

O = IRC Operator only channel (settable by IRCops)
That way, only IRCops can enter those channels.

Hope this helps.

Re: set::auto-join - set::oper-auto-join

Posted: Thu Oct 03, 2024 4:11 pm
by fearcry
Okay, thx . . .