quote:
Originally posted by -!Felu!-
quote:
Originally posted by Mattike
Do you mean, filtering the words you send or the ones you recieve? 
Whatever he means, there's a way out.
For Outgoing you can just use Quick Texts.
And for Incoming(except emoticons) use something like this(Make sure Edit is not longer than Message) -
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
if (Origin != Messenger.MyName){
if (Message == "Message 1"){
return "Edit 1";
}
if (Message == "Message 2"){
return "Edit 2";
}
if (Message == "Message 3"){
return "Edit 3";
}
}
}
That wouldn't work, if someone wrote "hey fool, go Message 3 yourself" it wouldn't replace that.