Shoutbox

[split] reply to ANYTHING the other contact sent you? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [split] reply to ANYTHING the other contact sent you? (/showthread.php?tid=64336)

RE: Tips by Onaedo on 08-01-2006 at 07:45 PM

What would the script be if you wanted to reply to ANYTHING the other contact sent you?


RE: [split] reply to ANYTHING the other contact sent you? by markee on 08-01-2006 at 09:32 PM

code:
function ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind)//when a message is sent by anyone
{
if (origin !== Messenger.MyName)//if it is not my message
{
ChatWnd.SendMessage("")//Send this message (Message goes between the quotes)
}
}
All you need to do now is enter between the quotes what you want to say when a contact sents you a message (please don't use the command for a nudge because that does get very annoying :P)