quote:
Originally posted by .Lou
I found a bug in the script. The script will not check if it's a contact that sent the message or if it was yourself. It will popup a window even if it was yourself that sent the last message.
Even though I couldn't reproduce the bug you might add
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin, Message, MessageKind)
{
Origin = RemoveStamp(Origin);
if (Origin != Messenger.MyName){
blah blah code here
}
}
or well something like