Skip to content
General IRCd

Limit protection

A TG007 community discussion started by maria.

Discussion 6 posts
Page 1 of 1
Open
Topic #569 · 6 published posts · 1,394 views

any Limit protection or that kind of thing to stop ppl flooding ? onjoin

 

or something that does not let like 2 nicknames the same in

eg

 

[ha]2362

[ha]2623

 

So would ban [ha] so the person cant flood with that name anymore ?

 

 

Btw this is for IRCx not ircd

Edited May 30, 2004 11:13 AM by maria

I reply to this msg within a year!

:) - I can't keep still :D

//access # add deny [ha]*

nooooooooooooooooo

 

not like that lol

 

so if more then 1 person with same type of name joins it ban them

 

not just that name

I reply to this msg within a year!

:) - I can't keep still :D

Well you have to think about what rules apply for when 2 names are called "the same type", like the first 4 characters the same or whatever.

yep but how would you add something like that to mIRC sad.gif am lost in what you said sorry unsure.gif

I reply to this msg within a year!

:) - I can't keep still :D

Well, you should think about in what case you will kick someone. Example: you don't want someone to join with a nickname that has the same first 4 characters as the people who joined the last 10 seconds.

 

That would something like this:

 

on !*:join:# {
 inc -u10 %lnick. [ $+ [ $left($nick,4) ] ]
 if (%lnick. [ $+ [ $left($nick,4) ] ] > 1) {
   access # add deny $left($nick,4) $+ * 3 : ppflood
   kick # $nick Possible passport flood - 3 minute ban -
 }
}