Well then limit the origin from which the message comes from. It should be your display name. Try something like this.
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind){
if(MessageKind === 1 && Origin === Messenger.MyName){
return Message.replace(/\b([a-z])([a-z]*)([a-z])\b/gi,"$3$2$1");//Switch the first and last letter of each word
}
}