What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » a responder to all messages

a responder to all messages
Author: Message:
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: a responder to all messages
personalized status can do it.. it's built into Plus!.. just type /persostat in the conversation window.

but if you really want to do it by script:
code:
var msg = "test message .. change this";
var enabled = false;
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if(Message === "/toggle"){
enabled = !enabled;
return "";
}
}
function OnGetScriptCommands(){
return "<ScriptCommands><Command><Name>toggle</Name><Description>Reply to all messages</Description></Command></ScriptCommands>";
}
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin){ // leave out Message and MessageKind since it will just reply one message to all received messages (excluding nudges)
if(Origin !== Messenger.MyName && enabled){
ChatWnd.SendMessage(msg);
}
}

for this code, you use /toggle to turn it on or off (default off. change false to true to make it enabled by default)

This post was edited on 06-18-2008 at 10:03 PM by roflmao456.
[quote]
Ultimatess6
: What a noob mod
06-18-2008 09:58 PM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
a responder to all messages - by zogo on 06-18-2008 at 08:39 PM
RE: a responder to all messages - by Quantum on 06-18-2008 at 08:58 PM
RE: a responder to all messages - by Jimbo on 06-18-2008 at 09:47 PM
RE: a responder to all messages - by roflmao456 on 06-18-2008 at 09:58 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On