Non-letters in nicks

These are old archives. They are kept for historic purposes only.
Post Reply
Annihilator90
Posts: 30
Joined: Sat Jun 02, 2007 1:46 pm

Non-letters in nicks

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

Re: Non-letters in nicks

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