What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Change name on signin

[Request] Change name on signin
Author: Message:
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
O.P. [Request] Change name on signin
Can someone make a script that changes a certain user's name on signin and then prevents them from changing it.
Thanks(hopefully :p:lol:)

This post was edited on 11-16-2006 at 03:49 PM by Jimbo.
11-16-2006 03:48 PM
Profile E-Mail PM Find Quote Report
Sunshine
Elite Member
*****

Avatar

Posts: 5142
Reputation: 122
– / Female / Flag
Joined: Mar 2004
Status: Away
RE: [Request] Change name on signin
No, it might be able to change name but it can't prevent the user from changing it.
[Image: 25dr3o9]
11-16-2006 03:59 PM
Profile E-Mail PM Web Find Quote Report
alexp2_ad
Scripting Contest Winner
****

Avatar
Who love the chocolate?

Posts: 691
Reputation: 26
36 / Male / –
Joined: May 2004
Status: Away
RE: RE: [Request] Change name on signin
quote:
Originally posted by Sunshine
No, it might be able to change name but it can't prevent the user from changing it.

It can, just gotta look for the changed name event and change it back to what it was.
11-16-2006 04:00 PM
Profile E-Mail PM Find Quote Report
Sunshine
Elite Member
*****

Avatar

Posts: 5142
Reputation: 122
– / Female / Flag
Joined: Mar 2004
Status: Away
RE: [Request] Change name on signin
Please don't abuse the scripting engine for lame stuff like that.
[Image: 25dr3o9]
11-16-2006 04:06 PM
Profile E-Mail PM Web Find Quote Report
alexp2_ad
Scripting Contest Winner
****

Avatar
Who love the chocolate?

Posts: 691
Reputation: 26
36 / Male / –
Joined: May 2004
Status: Away
RE: [Request] Change name on signin
Ach, it's not that bad really is it.  It's not a flooder, it doesn't send viruses.  It has many legitimate uses, like making people have a certain name when using your computer.

code:
forceuser = 'email@email.com';
forcename = 'I'm using Alex's computer because I suck';

function OnEvent_Initialize(MessengerStart)
{
    if(Messenger.MyEmail == forceuser){
        Messenger.MyName = forcename;
    }
}

function OnEvent_SigninReady(sEmail){
    if(sEmail == forceuser){
        Messenger.MyName = forcename;
    }
}

function OnEvent_MyNameChange(sNewName){
    if(Messenger.MyEmail == forceuser && sNewName != forcename){
        Messenger.MyName = forcename;
    }
}

11-16-2006 04:11 PM
Profile E-Mail PM Find Quote Report
Jimbo
Veteran Member
*****

Avatar

Posts: 1650
Reputation: 18
31 / Male / Flag
Joined: Jul 2006
O.P. RE: [Request] Change name on signin
Thanks alex, your good
11-16-2006 05:59 PM
Profile E-Mail PM Find Quote Report
« 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