Page 1 of 1

adding ban nick into config

Posted: Wed Dec 06, 2006 7:25 pm
by DragonRyder
can i change this code:

Code: Select all

ban nick {
	mask "*DdOs*";
	reason "Reserved for Services";
};

ban nick {
	mask "*NaTzI*";
	reason "Reserved for Services";
};
to this:

Code: Select all

ban nick { mask "*DdOs*"; reason "Reserved for Services"; };

ban nick { mask "*NaTzI*"; reason "Reserved for Services"; };
asking before i try it to make sure i did it right.

Posted: Wed Dec 06, 2006 7:33 pm
by SpaceDoG
As far as I know of it should be ok. It's just like with the Aliases and putting them on the same line. As long as you have the ; in there it knows that, that part of the file is completed and goes on to the next.

Posted: Wed Dec 06, 2006 8:40 pm
by DragonRyder
thank you.