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
[SOLVED] set::auto-join - set::oper-auto-join
Moderator: Supporters
Re: set::auto-join - set::oper-auto-join
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.
That way, only IRCops can enter those channels.
Hope this helps.
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)Hope this helps.
Re: set::auto-join - set::oper-auto-join
Okay, thx . . .