AuthorMessage
Furiosrexalone
Clone
Posts: 1

I want to make a responder for messenger. When I'm away the responder will say "I'm currently away from the computer". This is what I have but it doesn't work:
Code:
While 1 ; Keeps the script going
ControlGetText("", "", "109824256")
Sleep(1000)
ControlSend("", "", 109824256, "I'm currently away from the computer")
Sleep(1000)
Sleep(15000) ; Will loop the script every 15 seconds
Wend