Page 1 of 1
Non-letters in nicks
Posted: Wed Dec 19, 2007 6:06 pm
by Annihilator90
How can I limit the number of non letters in nicks ? eg. like ^,-,[,],
/spamfilter + u block 0 Use_Proper_Nick (^|]|[){5} doesn't work.
Re: Non-letters in nicks
Posted: Wed Dec 19, 2007 6:17 pm
by Stealth
This will limit the use of the characters [,],^,- to 5
Code: Select all
/spamfilter + u block 0 Use_Proper_Nick ^(.*[\^\-\]\[].*){5}!
This will limit the use of any non-alphanumeric character allowed in nicks to 5
Code: Select all
/spamfilter + u block 0 Use_Proper_Nick ^(.*\W.*){5}!