O.P. RE: Help with very small script
Well I typed this
var oEmails = [
'matejsturm57@hotmail.com',
];
function OnEvent_ChatWndReceiveMessage (pChatWnd, sOrigin, sMessage, nMessageKind) {
for (var oEmail in oEmails) {
if (pChatWnd.Contacts.GetContact(oEmail) && pChatWnd.Contacts.Count === 1) {
return '';
}
}
}
and it didn't work, his messege was the same.
|