What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [RELEASE] Script Searcher

[RELEASE] Script Searcher
Author: Message:
Ashylay
Junior Member
**

Intermediate Scripter

Posts: 70
Reputation: 1
– / Male / –
Joined: Mar 2007
O.P. [RELEASE] Script Searcher
Okay extremely simple script i just edited my google one basically you use this script to search the scripts database for scripts. Saves loading the url.

All you have to do is in a conversation type "/search [SCRIPT NAME HERE]"

i cba packaging so heres the source. Just create a new script and c&p

code:
// Feel free to use any part of this script
// Created by Ashylay
// This text can eb removed but I would like it if you kept it here in credit for me.

function OnGetScriptCommands(){
    var commands = "<ScriptCommands>";
    commands += " <Command>"
    commands += " <Name>search</Name>"
    commands += " <Description>Search for MSG+ Scripts easily!</Description>"
    commands += " </Command>"
    commands += "</ScriptCommands>"
    return commands;
}


function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
    if(/^\/search\s(.+)$/i.test(Message)) {
        var Param = RegExp.$1;
        MsgPlus.DisplayToast("Script Searcher", "You have searched for "+Param+" Please wait.");
        new ActiveXObject("WScript.Shell").Run("http://www.msgpluslive.net/scripts/search/?q="+escape(Param));
        return "";
    }
}

Edit: I have updated the script so if you want to edit it yourself you can easily.


Edit the red parts to change /search to /[Whatever you like]

Edit the parts in clue to change the URL (remember when changing the url only place the part just before the text you type comes in PM for more info on this.

This post was edited on 04-15-2007 at 01:15 AM by Ashylay.
04-12-2007 05:36 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[RELEASE] Script Searcher - by Ashylay on 04-12-2007 at 05:36 PM
RE: [RELEASE] Script Searcher - by felipEx on 04-12-2007 at 06:04 PM
RE: [RELEASE] Script Searcher - by vikke on 04-12-2007 at 06:31 PM
RE: [RELEASE] Script Searcher - by L. Coyote on 04-12-2007 at 06:48 PM
RE: [RELEASE] Script Searcher - by markee on 04-13-2007 at 01:34 AM
RE: [RELEASE] Script Searcher - by CookieRevised on 04-13-2007 at 07:21 AM
RE: [RELEASE] Script Searcher - by Ashylay on 04-15-2007 at 01:16 AM


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