Thread: Language Filter
View Single Post
  #21  
Old 04-30-2007, 12:06 PM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
Quote:
Originally Posted by ff7chocoboknight View Post
using onPlayerChats() shows the players chat for a second then its blocked I use this split second by saying the message over and over showing the message before the words are blocked eachtime (i do this on Zone)
Where as
PHP Code:
//#CLIENTSIDE
function ChatBar.onAction()
{
  if (
ChatBar.text == "test!")
  {
    
ChatBar.text "Filtered!";
  }

This will set the player.chat as 'Filtered' instantly. ChatBar.onAction goes before onplayerchats(). If you were to set player.chat as "", the onplayerchats event won't even be called.
Reply With Quote