Shoutbox

[Release] Imitate Contacts! - 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: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [Release] Imitate Contacts! (/showthread.php?tid=61795)

[Release] Imitate Contacts! by Fox-NL on 06-27-2006 at 07:33 PM

Description:
Imitate your contacts using "!imitate". Get into a conversation with your buddy and say something like: "!imitate i am gay". And it  sends the message under his name!

Author:
Fox-NL

Version:
1.0

To-Do:
I want to add font and color support, but currently i have no idea how!

Final Notes:
I have nothing more to say, have fun!
- Fox-NL


RE: [Release] Imitate Contacts! by JonnyT on 06-27-2006 at 07:37 PM

just out o interest how did you get id of the myname says: bit and change it for thier name?


RE: [Release] Imitate Contacts! by pauleapo71 on 06-27-2006 at 07:56 PM

maybee thick but what exactly do i type, cuz if i type !imitate i am gay it just says that i said exactly !imitate i am gay


??????????


RE: [Release] Imitate Contacts! by Max on 06-27-2006 at 08:01 PM

Might be a good idea to add in support for WLM Custom Nicknames. :D


RE: [Release] Imitate Contacts! by Zahid™ on 06-27-2006 at 08:03 PM

Great work (Y).


RE: [Release] Imitate Contacts! by ykz on 06-27-2006 at 08:09 PM

uhm.. your contact see your own name and not his or hers....


RE: [Release] Imitate Contacts! by Voldemort on 06-27-2006 at 08:13 PM

doesnt seem to work here... !imitate is simply ignored in the message...


RE: [Release] Imitate Contacts! by Zayl on 06-27-2006 at 08:20 PM

Huh ! doesnt work ! :'(
I see my contact nickname and he sees my nickname !!


RE: [Release] Imitate Contacts! by Thor on 06-27-2006 at 08:25 PM

I could say good work, but it doesn't work so.... :)


RE: [Release] Imitate Contacts! by herbert7890 on 06-27-2006 at 08:29 PM

it  only works  like  30% of  the  time.. . ..  can u plz  fix  this,  cause  i really  like  this  script,  but  its  not  reliable


RE: [Release] Imitate Contacts! by upsfeup on 06-27-2006 at 08:44 PM

I guess is a due a delay on the name change. I wonder if other imitate functions use this same method!


RE: [Release] Imitate Contacts! by herbert7890 on 06-27-2006 at 08:52 PM

anyone  can help  on how  to make  it  work  100% of  the  time?


RE: [Release] Imitate Contacts! by Fox-NL on 06-27-2006 at 08:54 PM

Hahah that probably wont work, unless you try a different method like waiting for a couple of seconds before sending the message... but that could unveil the trick


RE: [Release] Imitate Contacts! by herbert7890 on 06-27-2006 at 08:58 PM

but  i also  figured  it  only  works  when  u have  only  one  convo  box  open,  if  u have  more,  it  doesnt  work,  and  even  when u have just one  convo  open,  it  works  like 30%  only :S  errrrrr


RE: [Release] Imitate Contacts! by Fr@nKy on 06-27-2006 at 09:13 PM

it's great but can't you add the function of mimic the font and color?


RE: [Release] Imitate Contacts! by Zahid™ on 06-27-2006 at 09:20 PM

quote:
Originally posted by Fr@nKy
it's great but can't you add the function of mimic the font and color?
quote:
Originally posted by Fox-NL
I want to add font and color support, but currently i have no idea how!

RE: [Release] Imitate Contacts! by Jellings on 06-27-2006 at 10:02 PM

Nice script.
It's worked every try. After reading some other posts about it not working with more than one conversations open i tried it with 3 other conversations open and it worked then too.

Is there any way to change the "!imitate" shortcut?
I tried changing it to "!im" by editing the script, but it didn't work (it just send out the message with "!im" at the begining just as i typed).


RE: [Release] Imitate Contacts! by Jimcando on 06-27-2006 at 11:29 PM

Ahhh, I remember all those times I had fun with people with the !imitate function of Messenger Discovery....

But it only works to full effect if it uses the same font and colour etc...I'll download this as soon as that gets sorted out :P


RE: [Release] Imitate Contacts! by Fuzzles on 06-27-2006 at 11:31 PM

I can't wait till this works 100%
Go in a massive convo and do it


RE: [Release] Imitate Contacts! by f1utils on 06-29-2006 at 01:11 PM

    Hello,
    I'm spanish and my english is very poor. Sorry.
    I have modified the script. I add a delay of one second after changing my name by the one of my contact.
    I have tested it with a conversation and a contact and works.

    The code:

code:

var myWnd;
var myName;
var myMessage;

function OnEvent_Initialize(MessengerStart) {
    wait = false;
}

function OnEvent_ChatWndSendMessage(Wnd,Msg) {
    if(Msg.length > 8 && wait == false) {
        if(Msg.substr(0,8) == "!imitate") {
            var WndContacts = Wnd.Contacts;
            if(WndContacts.Count == 1) {
                var e = new Enumerator(WndContacts);
                var Cnt = e.item();
                var Tmpname = Messenger.MyName;
                myName = Messenger.MyName;
                myWnd = Wnd;
                myMessage = Msg.substr(9,Msg.length-9);
                Messenger.MyName = Cnt.Name; wait = true;
                MsgPlus.AddTimer('myTimer', 1000);
            }
            return "";
        }
    }
}

function OnEvent_Timer(TimerId)
{
    if(TimerId == 'myTimer')
    {
        myWnd.SendMessage(myMessage);
        Messenger.MyName = myName;
        wait = false;
    }
}



RE: [Release] Imitate Contacts! by Sypher on 06-29-2006 at 01:55 PM

Hmm isn't it possible to use the P4 names, like StuffplugNG uses..


RE: [Release] Imitate Contacts! by Zayl on 06-29-2006 at 02:11 PM

Gracias f1utils por tu script :D
Voy a testar :)


RE: [Release] Imitate Contacts! by Zahid™ on 06-29-2006 at 03:04 PM

Is it possible to change !imitate to /imitate so we don't have to type !imitate all the time and we can just type / and then go to imitate?


RE: [Release] Imitate Contacts! by deAd on 06-29-2006 at 03:07 PM

Yeah. that'd be easy. Just add the OnGetScriptCommands() event and put in xml. =)


RE: [Release] Imitate Contacts! by Zayl on 06-29-2006 at 03:20 PM

But it doesnt copy your contacts font and color ! :(


RE: [Release] Imitate Contacts! by Zayl on 06-29-2006 at 05:34 PM

Doesn't work !! :'(


RE: [Release] Imitate Contacts! by Thor on 06-29-2006 at 05:45 PM

I'd prefer to keep safe, hehe. :refuck:


RE: RE: [Release] Imitate Contacts! by f1utils on 06-29-2006 at 08:00 PM

quote:
Originally posted by Zayl
But it doesnt copy your contacts font and color ! :(


The only thing I do was put a delay. What doesn't work?



RE: [Release] Imitate Contacts! by kall on 06-29-2006 at 11:02 PM

i dont sure but i've been using it and i think it only work just for people who have msn 8 if u sen d the command to msn 7.5, etc doesnt work


RE: [Release] Imitate Contacts! by tinpiliycfa on 06-30-2006 at 11:02 AM

Thanks, I tried but my contact sees her name but with my fonts and style... So she knows right away it's fake and so it's not that funny.

Do you know how to make it happen into her window with her font and style please ?

Thanks


RE: [Release] Imitate Contacts! by turix on 06-30-2006 at 11:54 AM

imitate work but my font , font color type with write

his dont font or font color

please

i'm bad english sorry :(


RE: [Release] Imitate Contacts! by tinpiliycfa on 06-30-2006 at 12:38 PM

also it still doesn't work all time


RE: [Release] Imitate Contacts! by tinpiliycfa on 06-30-2006 at 12:39 PM

we really must want to do it to make all this before sending a word lol


RE: [Release] Imitate Contacts! by tinpiliycfa on 06-30-2006 at 01:06 PM

ok thank you


RE: [Release] Imitate Contacts! by bloodspill on 07-09-2006 at 11:44 AM

how do u use this download when im in the zip file theres some imitate.js thing and script info.xml what do u do?


RE: [Release] Imitate Contacts! by Felu on 07-09-2006 at 11:46 AM

quote:
Originally posted by bloodspill
how do u use this download when im in the zip file theres some imitate.js thing and script info.xml what do u do?
Change the extension of the file from .zip to .plsc :)
RE: [Release] Imitate Contacts! by giac jr on 07-09-2006 at 11:50 AM

It seems to be fixed now, Felu


RE: [Release] Imitate Contacts! by snAke_LeAder on 07-10-2006 at 06:19 PM

!imitate shows only in my window the name from my buddy. in  my buddy's chat window my nick appears, doesnt work