Page 1 of 1

Ban Nick Mask

Posted: Thu Jun 16, 2005 10:19 pm
by Prism128
Hey,

I'm currently running an IRC network, but it seems that half of the users connecting like to bring a bot with them...

Is there a way I can make it so the ban nick mask bans all usernames with the word Bot in? However (this is the tricky part), i need to allow my bot onto the server (which has bot in its name), as it provides some necessary services... and changing it's name is not an option...

Thanks in advance; any help appreciated! :D

Posted: Thu Jun 16, 2005 11:06 pm
by Stealth
User names or real names?

Posted: Fri Jun 17, 2005 1:22 pm
by Prism128
Either or both... just some way to help limit the number of bots joining...

Thanks :)

Posted: Fri Jun 17, 2005 1:55 pm
by aquanight

Code: Select all

ban nick {
    mask *Bot*;
    reason "no bots";
};
excpet tkl {
    mask [email protected];
    type qline;
};

Posted: Fri Jun 17, 2005 2:11 pm
by Prism128
so i could do this, yeah?

Code: Select all

except tkl {
mask [email protected];
type qline;
};

Posted: Fri Jun 17, 2005 2:58 pm
by Dukat
If that's the correct mask of your bot... yes :D