What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Control PSM/Nick

[Request] Control PSM/Nick
Author: Message:
Eddie
Veteran Member
*****


Posts: 2078
Reputation: 30
32 / Male / Flag
Joined: Oct 2005
Status: Away
O.P. [Request] Control PSM/Nick
Ok i dont know if this will make much sense but here goes :)

Would someone be able to make a script, so that someone can type a command (ie. /contpsm or /contnick <message>) and the message will appear in my personal message or nickname. If this is possible would you be able to make it so i can "ban" certain email addresses from being able to do this. I know its a fairly big request but i think it would be cool (Y) thanks if its possible, if not, oh well :)
...there used to be a signature here :)
01-07-2007 10:44 AM
Profile PM Web Find Quote Report
markee
Veteran Member
*****

Avatar

Posts: 1621
Reputation: 50
35 / Male / Flag
Joined: Jan 2006
RE: [Request] Control PSM/Nick
The only way to do this is for your contact to have a script installed that allows others to change their name/psm.  There is no way for anyone to change someone else's information.
[Image: markee.png]
01-07-2007 10:46 AM
Profile PM Find Quote Report
the andyman
Junior Member
**

Avatar
Windows Live Fanatic

Posts: 92
Reputation: 4
– / Male / Flag
Joined: Apr 2005
RE: [Request] Control PSM/Nick
Using http://www.msgpluslive.net/scripts/view/53-Personal-Message-Chat/ your contacts should be able to control your PM by sending you a command and their message.
01-07-2007 12:29 PM
Profile E-Mail PM Web Find Quote Report
Eddie
Veteran Member
*****


Posts: 2078
Reputation: 30
32 / Male / Flag
Joined: Oct 2005
Status: Away
O.P. RE: [Request] Control PSM/Nick
quote:
Originally posted by markee
The only way to do this is for your contact to have a script installed that allows others to change their name/psm.  There is no way for anyone to change someone else's information.
you misunderstood what i meant obviously, they type something like !contnick then and the script on my side will notice that like the one andyman gave, but i want that tweaked to suit as i said in the first post.
quote:
Originally posted by the andyman
Using http://www.msgpluslive.net/scripts/view/53-Personal-Message-Chat/ your contacts should be able to control your PM by sending you a command and their message.
(Read ^^^^)
...there used to be a signature here :)
01-07-2007 01:25 PM
Profile PM Web Find Quote Report
MrT
Junior Member
**

Coding For Fun

Posts: 62
35 / Male / Flag
Joined: Jul 2006
RE: [Request] Control PSM/Nick
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind) {

nickmail(Origin);
Debug.trace(Origin);
if (nicktomail == "yourcontact@hotmail.com") {

kontrol = Message.split("+");

if(kontrol[0] == '!nick') {     
if (kontrol[1] == null){
ChatWnd.SendMessage(Messenger.MyName);
}
else {
Messenger.MyName = kontrol[1];
}
}

if(kontrol[0] == '!psm') {   
if (kontrol[1] == null){
ChatWnd.SendMessage(Messenger.MyPersonalMessage);
}
else {
Messenger.MyPersonalMessage = kontrol[1];
}
}

}
   
}


function nickmail(nicki) {
    for(var e = new Enumerator(Messenger.MyContacts); !e.atEnd(); e.moveNext()) {
        var contactlar = e.item();
            if (contactlar.Status > 2) {
                  if (MsgPlus.RemoveFormatCodes(contactlar.Name) == nicki) {
                 nicktomail = contactlar.Email;
                 }
            }
    }
}




!nick+your new nick => contact can change your nick
!nick => script sends you current nick

!psm+your new psm => contact can change your psm
!psm => script sends you current psm



( Sorry for my english (A) )

This post was edited on 01-07-2007 at 09:11 PM by MrT.
01-07-2007 09:10 PM
Profile E-Mail PM Web Find Quote Report
Eddie
Veteran Member
*****


Posts: 2078
Reputation: 30
32 / Male / Flag
Joined: Oct 2005
Status: Away
O.P. RE: [Request] Control PSM/Nick
Thanks MrT but that didn't work for me :(
...there used to be a signature here :)
01-08-2007 02:24 AM
Profile PM Web Find Quote Report
MrT
Junior Member
**

Coding For Fun

Posts: 62
35 / Male / Flag
Joined: Jul 2006
RE: [Request] Control PSM/Nick
what is wrong? :(
i'm using this code and it works
01-08-2007 09:08 PM
Profile E-Mail PM Web Find Quote Report
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [Request] Control PSM/Nick
You want something similar to my ChangeMe! script... Just rather than DP, you want the PSM and Nick...

I would do it for you, but got no hard drive... Someone can feel free to edit it as they see fit
<Eljay> "Problems encountered: shit blew up" :zippy:
01-09-2007 03:56 PM
Profile PM Find Quote Report
Eddie
Veteran Member
*****


Posts: 2078
Reputation: 30
32 / Male / Flag
Joined: Oct 2005
Status: Away
O.P. RE: [Request] Control PSM/Nick
quote:
Originally posted by SpunkyLoveMuff
You want something similar to my ChangeMe! script... Just rather than DP, you want the PSM and Nick...

I would do it for you, but got no hard drive... Someone can feel free to edit it as they see fit
Thanks SLM :)
...there used to be a signature here :)
01-09-2007 04:06 PM
Profile PM Web 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