Prevent admin being kicked / banned

These are old archives. They are kept for historic purposes only.
Post Reply
TommyGun
Posts: 4
Joined: Thu Feb 22, 2007 1:04 am

Prevent admin being kicked / banned

Post 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
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post 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)
TommyGun
Posts: 4
Joined: Thu Feb 22, 2007 1:04 am

Post 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.
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

It's not a command, it's a usermode you're looking for... :wink:
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
TommyGun
Posts: 4
Joined: Thu Feb 22, 2007 1:04 am

Post 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.
SpaceDoG
Posts: 301
Joined: Mon Feb 27, 2006 5:44 am
Contact:

Post by SpaceDoG »

TommyGun like Stealth said it's a user mode not a channel mode.
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post 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)
TommyGun
Posts: 4
Joined: Thu Feb 22, 2007 1:04 am

Post 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
Post Reply