What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Stuffplug Talkers (yes, again)

Stuffplug Talkers (yes, again)
Author: Message:
Dung3onMast3r
Junior Member
**

Avatar
Play Dungeons & Dragons!

Posts: 31
38 / Male / –
Joined: May 2004
RE: Stuffplug Talkers (yes, again)
As I don't know how the StuffPlug talkers are used by the plugin, I can't give any advice. Anyway, take a look at how bambi talker works:

code:
function getnr() {
    var output=""+(Math.round(Math.random()*5) * 50);
    while (output.length < 3) output="0"+output;
    return output;
}

function talker(input){
    var cchar="";
    var output="";
    var i=0;
    while (i<input.length) {
        if (input.substr(i,1)==" ") {
            output = output+" ";
        } else {
            output=output+cchar+"(";
            output=output+getnr()+",";
            output=output+getnr()+",";
            output=output+getnr()+")";
            output=output+input.substr(i,1);
        }
        i=i+1;
    }
    return output;
}


So try giving the  value to any string and then use it...
07-10-2004 12:50 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Stuffplug Talkers (yes, again) - by Ulrik on 07-09-2004 at 11:35 PM
RE: Stuffplug Talkers (yes, again) - by Dung3onMast3r on 07-10-2004 at 12:50 AM
RE: Stuffplug Talkers (yes, again) - by Ulrik on 07-10-2004 at 02:50 AM
RE: Stuffplug Talkers (yes, again) - by toddy on 07-10-2004 at 02:55 AM
RE: Stuffplug Talkers (yes, again) - by Ulrik on 07-10-2004 at 03:07 AM
RE: Stuffplug Talkers (yes, again) - by toddy on 07-10-2004 at 03:12 AM
RE: Stuffplug Talkers (yes, again) - by Ulrik on 07-10-2004 at 03:14 AM
RE: Stuffplug Talkers (yes, again) - by MessEnGer on 07-10-2004 at 07:56 AM
RE: Stuffplug Talkers (yes, again) - by Millenium_edition on 07-10-2004 at 08:37 AM
RE: Stuffplug Talkers (yes, again) - by Dung3onMast3r on 07-10-2004 at 11:55 AM
RE: Stuffplug Talkers (yes, again) - by MessEnGer on 07-10-2004 at 12:05 PM
RE: Stuffplug Talkers (yes, again) - by Dung3onMast3r on 07-10-2004 at 02:20 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