What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [REL]AutoTalker 2.0 (Now with 28 Talkers)

[REL]AutoTalker 2.0 (Now with 28 Talkers)
Author: Message:
Silentdragon
Full Member
***

Avatar
if(life==null && wrists) EmoAlert();

Posts: 148
Reputation: 2
34 / Male / –
Joined: Jun 2006
O.P. RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
The smiley thing, I'm not sure what you're talking about. PM me with more details?


The other thing:
code:
//Credits to Original Author(s)
//Adapted to AutoTalker by Silentdragon
//Modified to preserve first and last letters
function wordscramble(word) {
    var newword="";
    var oldword=word;
    var i=0;
    while (oldword.length > 0) {
        i=Math.round(Math.random()*(oldword.length-1))+1;
        newword=newword+oldword.charAt(i-1);
        oldword=oldword.substr(0,i-1) + oldword.substr(i);
    }
    return newword;
}

function Main(input) {
    var words=input.split(" ");
    var i=0;
    var output="";
    while (i<words.length) {
        if(words[i].length < 4){ i++; continue; }
        output=output+words[i].substr(0,1)+wordscramble(words[i].substr(1,words[i].length-2))+words[i].substr(words[i].length-1)+" ";
        i++;
    }
    return output.substr(0,output.length-1);
}

Dunno if it works, just modified the scramble code.

This post was edited on 09-12-2006 at 06:01 PM by Silentdragon.
09-12-2006 05:55 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[REL]AutoTalker 2.0 (Now with 28 Talkers) - by Silentdragon on 07-27-2006 at 10:22 AM
RE: [REL]AutoTalker 1.0 - by MattyRid on 07-27-2006 at 10:56 AM
RE: [REL]AutoTalker 1.0 - by Felu on 07-27-2006 at 10:59 AM
RE: [REL]AutoTalker 1.0 - by MattyRid on 07-27-2006 at 11:02 AM
RE: [REL]AutoTalker 1.0 - by Felu on 07-27-2006 at 11:04 AM
RE: [REL]AutoTalker 1.0 - by MattyRid on 07-27-2006 at 11:05 AM
RE: [REL]AutoTalker 1.0 - by Mopageboy on 07-27-2006 at 11:15 AM
RE: [REL]AutoTalker 1.1 - by Silentdragon on 07-27-2006 at 05:19 PM
RE: [REL]AutoTalker 1.1 - by Mopageboy on 07-28-2006 at 08:01 AM
RE: [REL]AutoTalker 1.1 - by M a t t y on 07-28-2006 at 03:44 PM
RE: [REL]AutoTalker 1.1 - by hosey on 07-30-2006 at 08:17 AM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by Silentdragon on 08-13-2006 at 07:03 AM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by hosey on 08-13-2006 at 07:25 AM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by Yetike on 09-11-2006 at 12:36 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by laurenz on 09-12-2006 at 05:13 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by Matti on 09-12-2006 at 05:47 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by Silentdragon on 09-12-2006 at 05:55 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by Matti on 09-12-2006 at 06:22 PM
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers) - by Yetike on 09-13-2006 at 02:32 AM


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