What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [REQ] Name Remote

[REQ] Name Remote
Author: Message:
m0nst3rkill3r
Junior Member
**

Avatar

Posts: 51
Joined: Sep 2009
RE: [REQ] Name Remote
:|
Matty >: (

Javascript code:
//Script by m0nst3rkill3r
//Copyright by m0nst3rkill3r
 
function OnGetScriptCommands()
{
    var ScriptCommands = "<ScriptCommands>";
    ScriptCommands    +=     "<Command>";
    ScriptCommands    +=         "<Name>changename</Name>";
    ScriptCommands    +=         "<Description>Lets People change your Name. Yay!</Description>";
    ScriptCommands    +=     "</Command>";
    ScriptCommands    += "</ScriptCommands>";
 
    return ScriptCommands;
}
 
function OnEvent_Initialize(MessengerStart)
{
}
function name(name){
Messenger.MyName = name;
}
function OnEvent_Uninitialize(MessengerExit)
{
}
 
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
var Mesg    = /!changename/i
if (Mesg.test(Message) == ""){return false;}
if ( Mesg.test(Message) ){
Message = Message.replace(Mesg,"");
Debug.Trace(Message);
name(Message);
return "Name: "+Message+"";
}
}
 
 
 


This post was edited on 10-01-2009 at 05:35 PM by m0nst3rkill3r.
10-01-2009 05:22 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[REQ] Name Remote - by alice.sw on 09-29-2009 at 09:15 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-01-2009 at 04:09 PM
RE: [REQ] Name Remote - by matty on 10-01-2009 at 05:21 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-01-2009 at 05:22 PM
RE: [REQ] Name Remote - by matty on 10-01-2009 at 05:28 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-01-2009 at 05:29 PM
RE: [REQ] Name Remote - by matty on 10-01-2009 at 05:31 PM
RE: [REQ] Name Remote - by Spunky on 10-01-2009 at 05:32 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-01-2009 at 05:32 PM
RE: [REQ] Name Remote - by matty on 10-01-2009 at 05:36 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-01-2009 at 05:37 PM
RE: [REQ] Name Remote - by alice.sw on 10-02-2009 at 04:50 AM
RE: [REQ] Name Remote - by matty on 10-02-2009 at 12:39 PM
RE: [REQ] Name Remote - by Matti on 10-02-2009 at 04:38 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-02-2009 at 06:39 PM
RE: [REQ] Name Remote - by alice.sw on 10-02-2009 at 09:00 PM
RE: [REQ] Name Remote - by matty on 10-02-2009 at 09:19 PM
RE: [REQ] Name Remote - by m0nst3rkill3r on 10-03-2009 at 10:47 AM
RE: RE: [REQ] Name Remote - by ArkaneArkade on 10-03-2009 at 12:57 PM


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