well that depends, you could hide the message for example:
Javascript code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind){
if (Message.charAt(0) == '#'){
Debug.Trace("make invis" + Message);
return "";
}
}
The screen will still show you said something, just not what you said as long as you prefix it with #...