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:
zogo
Junior Member
**

Avatar
all you are doomed

Posts: 98
Reputation: 1
30 / Male / Flag
Joined: Feb 2008
O.P. a responder to all messages
is there a script that responds to all messages sent to u
and with a toggle (enable/dissable) option
if not can somone make it or give me the code
people have negativly rated me saying i'm spamming just to get 100 posts... i'm not! i'm 100% realy stuck... somtimes
06-18-2008 08:39 PM
Profile E-Mail PM Web Find Quote Report
Quantum
Disabled Account
*****

Away.

Posts: 1055
Reputation: -17
30 / Male / Flag
Joined: Feb 2007
RE: a responder to all messages
If you type /all then your message in a convo the message will be sent to all people that you have an open convo with :P
No longer here.
06-18-2008 08:58 PM
Profile PM Find Quote Report
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
RE: a responder to all messages
quote:
Originally posted by john-t
If you type /all then your message in a convo the message will be sent to all people that you have an open convo with :P
I think thats not what he means at all.
I think he means he wants a script that sends the same reply to every single message recieved. If so, thats very easy to do i think.
06-18-2008 09:47 PM
Profile E-Mail PM Find Quote Report
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 »


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