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)

Pages: (2): « First « 1 [ 2 ] Last »
[REL]AutoTalker 2.0 (Now with 28 Talkers)
Author: Message:
hosey
Junior Member
**

Avatar
thanx NanaFreak for ma sig and av

Posts: 66
Reputation: -3
31 / Male / –
Joined: Dec 2005
RE: [REL]AutoTalker 1.1
nice script!! 10 out of 10!!! gunna have fun using this script!!
07-30-2006 08:17 AM
Profile E-Mail PM Find Quote Report
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)
Version 2.0 is out. Now with Javascript support. Enjoy!
08-13-2006 07:03 AM
Profile E-Mail PM Web Find Quote Report
hosey
Junior Member
**

Avatar
thanx NanaFreak for ma sig and av

Posts: 66
Reputation: -3
31 / Male / –
Joined: Dec 2005
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
version 2.0 rocks! i like it with more of them!
08-13-2006 07:25 AM
Profile E-Mail PM Find Quote Report
Yetike
New Member
*

Avatar
the ingenious mountain-beast

Posts: 14
– / Other / –
Joined: Jun 2006
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
Good day :)

I was wondering about making a simple emoticon replacing talker, however, your script recognizes emoticons not by its codes, but by something else.
My other prob that I was trying to replace the emoticons with some other characters, but I noticed that in some cases the replacement doesn't work, it even makes the script ignore the whole file (I tried to do it in txt, since I don't know anything about Java)

Working sample:

_DDDD       |:Dd
_DDD         |:Dc
_DD           |:Db
_D             |:Da

Not working sample:
_$              |:$a
_'((            |:'(a

Could you fix the problems with the characters/emoticons?
Or at least list the invalid characters?

Thanks in advance:
YeTiKe

(the reason I tried to do it in a txt file is because it is easier to manage than Quick Texts)

This post was edited on 09-11-2006 at 12:38 PM by Yetike.
StuffPlug - Official Hungarian Forums Moderator - Info
My deviantART profile & My bloglike corner
09-11-2006 12:36 PM
Profile PM Find Quote Report
laurenz
Junior Member
**


Posts: 23
Joined: Sep 2005
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
i'd like to request a talker that shuffles all letters in a word, except for the first and last letter of that word.
so something like example becomes emaplxe.

Im requesting this because i have readed somewhere that you can mix all letters in a word, as long as the first and last letter keep in place. because you don't look at the whole word, but only at the first and last letter.

so i tinhk taht wlil gvie qiute a fnuny efefct?
So what do you guys think about this?
wanna give it a shot?
09-12-2006 05:13 PM
Profile E-Mail PM Find Quote Report
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
31 / Male / Flag
Joined: Apr 2004
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
quote:
Originally posted by laurenz
i'd like to request a talker that shuffles all letters in a word, except for the first and last letter of that word.
so something like example becomes emaplxe.

Im requesting this because i have readed somewhere that you can mix all letters in a word, as long as the first and last letter keep in place. because you don't look at the whole word, but only at the first and last letter.

so i tinhk taht wlil gvie qiute a fnuny efefct?
So what do you guys think about this?
wanna give it a shot?
No problem, I'll try it right now! :)
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
09-12-2006 05:47 PM
Profile E-Mail PM Web Find Quote Report
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
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
31 / Male / Flag
Joined: Apr 2004
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
Damn... Why are people always quicker than me? :(
Anyway, if you would still be interested:
code:
//Note: place this in a new .js file in C:\Program Files\Messenger Plus! Live\Scripts\AutoTalker\Talkers
function Main(Arg) {
   var tmp = Arg.split(" ");
   for(i in tmp) {
      if(tmp[i].length >= 4) {
         tmp[i] = (tmp[i].charAt(0)) + wordscramble(tmp[i].substring(1, tmp[i].length-1)) + (tmp[i].charAt(tmp[i].length-1));
      }
   }
   return tmp.join(" ");
}

//Original function from the scramble talker
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;
}

This post was edited on 09-12-2006 at 06:22 PM by Matti.
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
09-12-2006 06:22 PM
Profile E-Mail PM Web Find Quote Report
Yetike
New Member
*

Avatar
the ingenious mountain-beast

Posts: 14
– / Other / –
Joined: Jun 2006
RE: [REL]AutoTalker 2.0 (Now with 28 Talkers)
Well, I noticed that the script doesn't replace smileys (I have tried it with :D and :) - might have experienced it because there are ":" signs in them?
StuffPlug - Official Hungarian Forums Moderator - Info
My deviantART profile & My bloglike corner
09-13-2006 02:32 AM
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