View Single Post
Manip
Senior Member
Join Date: Jan 2004
Old 11-24-2004 , 09:09  
Reply With Quote #8

Quote:
Originally Posted by ronin
I think there might be a problem with \w\s*jew\b
It doesn't seem to ban on this one
Keep in mind \w means a letter. Please excuse this, but 'fucking jew' will get detected because it has a letter, then a space then the word jew.

Currently the term 'jew' ('j3w' and 'j3w' are though) alone is not counted as racism. You can however change that:

\bj[^aeou]*w\b
becomes
\bj[^aou]*w\b

That will detect the word 'jew' always.

Morpheus:

Code:
server_cmd("amx_ban %s 2880 Bad language",authtoban)
(You had the time and authID inverted.)
Manip is offline
Send a message via AIM to Manip