Adding Operator

If your UnrealIRCd is up and running but you have a question about it, then use this forum.
(NOT for installation or connecting issues! Use the other forum instead.)

Moderator: Supporters

Post Reply
Gypsy_m
Posts: 1
Joined: Sun Jan 22, 2023 11:06 pm
Location: uk
Contact:

Adding Operator

Post by Gypsy_m »

Hello i would like to add the Operator like
LocOp, GlobOp, SA's, NA's
ive done the /msg operserv OPER ADD Nick Services Root
But it doesnt Give them a password for /oper nick password and ive tired adding the
*/
oper MineBlock {
class opers;
mask *@*;
password "MyPass";
/* Oper permissions are defined in an 'operclass' block.
* See https://www.unrealircd.org/docs/Operclass_block
* UnrealIRCd ships with a number of default blocks, see
* the article for a full list. We choose 'netadmin' here.
*/
operclass netadmin;
swhois "is a Network Administrator";
vhost netadmin.example.org;
}
*/
oper TheirNick {
class opers;
mask *@*;
password "ThirPasshere";
/* Oper permissions are defined in an 'operclass' block.
* See https://www.unrealircd.org/docs/Operclass_block
* UnrealIRCd ships with a number of default blocks, see
* the article for a full list. We choose 'netadmin' here.
*/
operclass netadmin;
swhois "is a Network Administrator";
vhost netadmin.example.org;
}
but isnt working
Thank you in advancve
DonTCry
Posts: 50
Joined: Mon Feb 06, 2012 6:01 pm
Contact:

Re: Adding Operator

Post by DonTCry »

Hello,

the unrealircd oper block and services opers block are 2 different things.

https://www.unrealircd.org/docs/Oper_block - unrealircd
https://github.com/anope/anope/blob/2.0 ... #L899-L925 - services oper
Post Reply