What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [REQUEST] Automatic "brb" notification

Pages: (2): « First [ 1 ] 2 » Last »
[REQUEST] Automatic "brb" notification
Author: Message:
thehoodie
New Member
*


Posts: 1
Joined: Nov 2007
O.P. [REQUEST] Automatic "brb" notification
I am looking for a script that, when you change your status to "be right back", will notify all open chats with a "brb" message.
11-28-2007 05:13 AM
Profile E-Mail PM Find Quote Report
Th3rmal
Veteran Member
*****

Peek-a-boo! I see you!!

Posts: 1226
Reputation: 26
32 / Male / Flag
Joined: Aug 2005
RE: [REQUEST] Automatic "brb" notification
instead of doing that you could just type "/all brb" without the quote marks and this will send brb to all chats
You have the intellect comparable to that of a rock. Be proud.
11-28-2007 06:26 AM
Profile E-Mail PM Web Find Quote Report
Mizery_Made
Junior Member
**


Posts: 56
Reputation: 1
36 / Male / Flag
Joined: Sep 2006
RE: [REQUEST] Automatic "brb" notification
You could always use the 'Messenger Lock' function, set it up to change your status to BRB, and also you could set it up to send "BRB" to all your open conversations, optionally even set it up to sat "Back" when you unlock it.

*Shrugs*
Tech N9ne/Tek Nin - Noun:
Unparalled master of rhyme, scientific blend of technique and numerology

[Image: banner234x60.jpg]
11-29-2007 03:26 PM
Profile E-Mail PM Find Quote Report
haydos
Veteran Member
*****

dirty dirty house music

Posts: 1026
Reputation: 49
– / Male / Flag
Joined: Dec 2004
RE: [REQUEST] Automatic "brb" notification
Create a quicktext.

Go to the quicktexts section of MP!L, 'Create a standalone message or message group'.
Then in the 'Fast send shortcut' section, enter /b (or whatever command you like).
In the Message(s) bit, enter:
code:
/all brb
/brb
Change the 'line breaks' radio button to the one that reads 'create multiple messages'

The result of all of this means that when you type /b in a conversation and press enter, 'brb' will be sent to all open conversations, and your status will automatically change to be right back.
quote:
Originally posted by WDZ
don't be lazy
[Image: gayspam.gif]

11-29-2007 03:41 PM
Profile PM Find Quote Report
skyserpent
Junior Member
**

Bacon

Posts: 96
32 / Male / –
Joined: Aug 2006
RE: [REQUEST] Automatic "brb" notification
I have one that I use.

On sending /brb (setting status to brb)
It sends the message: Be back in a bit.

Tell me what you would like it to say and I will change it and upload it for you.
12-06-2007 10:30 PM
Profile E-Mail PM Web Find Quote Report
skyserpent
Junior Member
**

Bacon

Posts: 96
32 / Male / –
Joined: Aug 2006
RE: [REQUEST] Automatic "brb" notification
code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if(Message == "/brb"){
ChatWnd.SendMessage("/all Be back in a bit.");
}
}

That's what I use. Have fun =]
12-09-2007 02:28 PM
Profile E-Mail PM Web Find Quote Report
skyserpent
Junior Member
**

Bacon

Posts: 96
32 / Male / –
Joined: Aug 2006
RE: [REQUEST] Automatic "brb" notification
Just, about 10 mins ago, changed the script so I thought I'd post it :)

code:
//Script created by Aden Beckitt
//Don't steal stuff kids :)

function OnGetScriptCommands ()
{
    commands  = "<ScriptCommands>";
    commands +=     "<Command>";
    commands +=         "<Name>back</Name>";
    commands +=         "<Description>Tells all open conversations that you are back.</Description>";
    commands +=     "</Command>";
    commands += "</ScriptCommands>";
    return commands;
}

function OnEvent_ChatWndSendMessage(ChatWnd, Message){
if(Message == "/brb"){
ChatWnd.SendMessage("/all Be back in a bit.");
}
switch (Message){
        case "/back":
        return "/all I'm back. :)";
}
if(Message == "I'm back. :)"){
ChatWnd.SendMessage("/online");
}
}
01-03-2008 01:48 AM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [REQUEST] Automatic "brb" notification
skyserpent, nice but there is really no need for any script for this. At least not if you're going to react on something the user must type. As, Haydos explained, simply create a quicktext, way more sufficient.

PS: and if you use sendmessage in a script your should ALWAYS check if you actually can send a message first, see scripting documentation.

----------

A much better script would be do detect a status change instead of detecting something the user has typed. Because it is not always possible for the user to type something in a chat window to begin with. And in that way the user can simply change his status to Be Right Back in whatever way he wants.

;)

This post was edited on 01-03-2008 at 04:23 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
01-03-2008 04:19 AM
Profile PM Find Quote Report
skyserpent
Junior Member
**

Bacon

Posts: 96
32 / Male / –
Joined: Aug 2006
RE: [REQUEST] Automatic "brb" notification
Meh =P I use /brb when I change to Be Right Back so it works good for me :) Just thought i'd share. Thanks anyway :)

How do you go about detecting status changes then?

- Aden.
01-03-2008 01:53 PM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [REQUEST] Automatic "brb" notification
quote:
Originally posted by skyserpent
How do you go about detecting status changes then?
See scripting documentation: OnEvent_MyStatusChange ;)
.-= A 'frrrrrrrituurrr' for Wacky =-.
01-03-2008 10:32 PM
Profile PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« 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