Wait Asimo...
1) Copy the code given to you, create a new script, erase all that was writed (making a blank window) and paste the code.
2) If you read the code (ignoring the "special words") you gonna see...
contacts = new Array("name@domain.com", "name2@doamin.com")//edit these to
All you have to do is erase name@domain.com and put your buddy's e-mail like "asimosbuddy@hotmail.com", "anotherbuddy@hotmail.com"
Then, now you're going to set your message...
Keep reading the code till you get this...
ChatWnd.
SendMessage("Good Morning") ->
I highlighted the text for help you understand the code
You need to replace Good Morning to Hi for example: ChatWnd.SendMessage("Hi").
Than, you can save the changes and enjoy...
An example:
code:
contacts = new Array("asimosbuddy@hotmail.com", "anotherbuddy@hotmail.com")//edit these to
function OnEvent_Signin(Email){
for(i=0; i<contacts.length; i++){
if(Email == contacts[i]){
Messenger.OpenChat(Email)
ChatWnd.SendMessage("Hi")
}
}
}
Edit: Don't forget that trying to change opitions on code is a way to learn and helps you understanding it