Shoutbox

Auto Responder Character Limit - 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: WLM Plus! Help (/forumdisplay.php?fid=12)
+----- Thread: Auto Responder Character Limit (/showthread.php?tid=88997)

Auto Responder Character Limit by king69_666 on 02-07-2009 at 12:31 AM

Hello, I'm trying to determine if there is a way to increase the character limit for the auto response part of Plus. i have read a few posts about character limits, but those were mostly for pasting into a chat window.

Basically i just want to create more away messages then the character limit allows me to do.  So i could do an infinite amount of:

#Sorry, I'm away.
#Yah, I'm still away

etc... Any ideas from any one on this?


RE: Auto Responder Character Limit by lonew666 on 07-20-2009 at 04:55 AM

i also want to know if this is posible


RE: Auto Responder Character Limit by CookieRevised on 07-20-2009 at 05:22 AM

There is indeed a limit for the auto-response. Though the limit should be high enough for basic use.

If you want an "unlimited" amount of sentences to reply with, then you need to create a script.

There might already be scripts out there which does exactly that though; providing a more elaborate auto-response system. Search the scripting database for it, or search the scripting subforum.

-----

In fact, you could also combine the build-in auto-responder with a script since the build-in auto-responder can also respond with a command. And you can use the /script command to call a function from a script.

Putting those two together, you could create a rather small script which does nothing more than providing you a random sentence (out of thousands) just by calling its function with the /script command.

Example:

JScript code:
function RandomAwayMessage() {
    var Quotes = [
        "Sorry, I'm away.",
        "I'm sooo away",
        "I'm not here",
        "Gone..."
    ];
    return Quotes[Math.floor(Quotes.length*Math.random())];
}

And in the preferences of the auto-responder of Messenger Plus! you type as sentence:
/script RandomAwayMessage

Note that in this small script example the sentences are choosen randomly, thus not in sequence like with the basic auto-responder. Of course, with a more elaborate script, you can program the behaviour in any way you want.