Quote:
Originally Posted by Cloven
And it's relatively easy to filter out the commonly used filter evasion tactics. Most people simply just do not do it.
Personally speaking I think a word filter is useless. It would be much more efficient and logical to have an option to ignore/unignore an individual player's chat in-game, which would simply prevent the ignored player's chat from being displayed to the ignoring player at all. 
|
PHP Code:
function onRemotePlayerChats(temp.obj, temp.chat)
{
if (temp.obj.isignored)
{
temp.obj.chat = "";
}
}
Goes hand-in-hand with the playerlist ignore function. Sorted.
