Page 1 of 1

Prevent admin being kicked / banned

Posted: Thu Feb 22, 2007 1:23 am
by TommyGun
First of all, i used the search but without any luck. Also the FAQ didnt had any answers for me, or im using the wrong key words.

My question; How to prevent the admin (me) being kicked or banned from a channel that is not mine?

My config;

Code: Select all

oper TommyGun {
	class           clients;
	from {
		userhost *@*;
	};
	password "passwordhere";
	flags
	{
	 local;
	 global;
	 coadmin;
	 admin;
	 services-admin;
	 netadmin;
	 can_rehash;
	 can_die;
	 can_restart;
	 helpop;
	 can_wallops;
	 can_globops;
	 can_localroute;
	 can_globalroute;
	 can_localkill;
	 can_globalkill;
	 can_kline;
	 can_unkline;
	 can_localnotice;
	 can_globalnotice;
	 can_zline;
	 can_gkline;
	 can_gzline;
	 get_umodew;
	 get_host;
	 can_override;
	 can_setq;
	 can_addline;
	 can_dccdeny;
	};
};
Thank you very much

Posted: Thu Feb 22, 2007 1:44 am
by Stealth
First, I'll say your config is sloppy. You don't need every oper flag to have every function.

You can join channels with keys with /invite, and /sajoin

To keep yourself from being kicked, I advise you read the manual - it's in there. I am not telling you because I want to make you unhappy, I am telling you because what you want to do sounds very abusive (force your way into a locked channel, and make it so they can't kick you)

Posted: Thu Feb 22, 2007 1:58 am
by TommyGun
Stealth wrote:First, I'll say your config is sloppy. You don't need every oper flag to have every function.
Who cares, it works :P Thanks for the advice though
You can join channels with keys with /invite, and /sajoin

To keep yourself from being kicked, I advise you read the manual - it's in there. I am not telling you because I want to make you unhappy, I am telling you because what you want to do sounds very abusive (force your way into a locked channel, and make it so they can't kick you)
Nah, i already changed the topic, cause i did found how to join a protected channel just after i made this topic.

So the only thing is the protection, but okay i will take a look again. / Edit -> scrolled through http://www.vulnscan.org/UnrealIRCd/unre ... ercommands but cant find it

About the abuse, im running a PRIVATE server myself, and their is only 1 channel on it that i use, and 1 of a friend of mine. That friend knows about this so it aint a problem.

Posted: Thu Feb 22, 2007 9:45 am
by Dukat
It's not a command, it's a usermode you're looking for... :wink:

Posted: Thu Feb 22, 2007 9:02 pm
by TommyGun
Dukat wrote:It's not a command, it's a usermode you're looking for... :wink:
I know about the +q mode now, but i dont wanna be the channel owner or operator. I just want to make it imposible for others to kick / ban me, without having me a status in the channel.

Posted: Thu Feb 22, 2007 10:46 pm
by SpaceDoG
TommyGun like Stealth said it's a user mode not a channel mode.

Posted: Thu Feb 22, 2007 10:50 pm
by Jobe
The problem here is he's confusing channel mode +q with user mode +q.

/mode NICK +q
Makes you un-kickable by regular users (excludes ulined servers)

Posted: Fri Feb 23, 2007 11:47 am
by TommyGun
Jobe1986 wrote:The problem here is he's confusing channel mode +q with user mode +q.

/mode NICK +q
Makes you un-kickable by regular users (excludes ulined servers)
Ah okay. Thanks for your help all of you, im going to try this

// Edit; okay it works. thanks again