chatfilter bag

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
achilless
Posts: 153
Joined: Thu Oct 02, 2008 7:40 pm
Location: Russia & Ukraine

chatfilter bag

Post by achilless »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:
L2JDP Revision Number:

lowercase everything is fine filters, if you write in big letters mats or large print - there is no (

example

her - -_-
HER - HER
kotk
Posts: 99
Joined: Wed Jan 04, 2006 12:51 am

Re: chatfilter bag

Post by kotk »

What are your revisions? This seems to work fine for me. Anyway look at

Code: Select all

filteredText = filteredText.replaceAll("(?i)" + pattern, Config.CHAT_FILTER_CHARS);
in java/com/l2jserver/gameserver/network/clientpackets/Say2.java
User avatar
achilless
Posts: 153
Joined: Thu Oct 02, 2008 7:40 pm
Location: Russia & Ukraine

Re: chatfilter bag

Post by achilless »

latest revision
private void checkText()
{
String filteredText = _text;
for (String pattern : Config.FILTER_LIST)
filteredText = filteredText.replaceAll("(?i)" + pattern, Config.CHAT_FILTER_CHARS);
_text = filteredText;
}
sorry, with English all right! Problem of a Russian words!

her - -_-
HER - -_-

хуй - -_-
ХУЙ - ХУЙ
Post Reply