Shoutbox

[Request] Multiple Accounts Nick Changer - 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: [Request] Multiple Accounts Nick Changer (/showthread.php?tid=71256)

[Request] Multiple Accounts Nick Changer by warmth on 01-31-2007 at 10:56 PM

How about a multiple accounts nick changer??? I have 2 accounts and I use the same nickname for both.. and is very annoying to copy one to another.... jajajaja (H)


RE: [Request] Multiple Accounts Nick Changer by roflmao456 on 01-31-2007 at 11:02 PM

as in... polygamy?


i can make one where it saves your name to a text file then loads it up on your other account... (non-polygamy)


RE: [Request] Multiple Accounts Nick Changer by MrT on 02-01-2007 at 10:48 PM

you can make two scripts.

one(for your first account)

code:
function OnEvent_ContactNameChange(mail,isim) {
if (mail == "yourSECONDmail@hotmail.com") { Messenger.MyName = isim; }
}

two(for your second account)
code:
function OnEvent_ContactNameChange(mail,isim) {
if (mail == "yourFIRSTmail@hotmail.com") { Messenger.MyName = isim; }
}


will it work?
i didn't test it
(sorry for my english)
RE: [Request] Multiple Accounts Nick Changer by roflmao456 on 02-01-2007 at 11:05 PM

quote:
Originally posted by MrT
you can make two scripts.

one(for your first account)
code:
function OnEvent_ContactNameChange(mail,isim) {
if (mail == "yourSECONDmail@hotmail.com") { Messenger.MyName = isim; }
}

two(for your second account)
code:
function OnEvent_ContactNameChange(mail,isim) {
if (mail == "yourFIRSTmail@hotmail.com") { Messenger.MyName = isim; }
}


will it work?
i didn't test it
(sorry for my english)

that will only work if he has himself on his other contact list..

and you dont have to create separate scripts, you can use only 1. just add an else to it ;)

eD: the text file thingy should work.. :rofl:

RE: [Request] Multiple Accounts Nick Changer by warmth on 05-06-2007 at 03:44 PM

roflmao456 can you please post the final result of the script??? of what you have said... I don't get it...