matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: Some big help I need
js code: function OnEvent_ContactSignin(sEmail) {
// Make sure they are my friend
if (sEmail === 'myfriendexample135@hotmail.co.uk') {
// Make sure the contact isn't blocked
if (Messenger.MyContacts.GetContact(sEmail).Blocked === false) {
Messenger.OpenChat(sEmail).SendMessage('Hello mate!');
}
}
}
|
|