What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Nudges, Updated.

2 votes - 2 average   Nudges, Updated.
Author: Message:
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: Nudges
For Patching WLM to allow unlimited nudges
CookieRevised's reply to Unlimited Nudges script

To send numerous nudge at once.
To use type "/nudge <no of nudges>" in a conversation without the quotes.
code:
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Created By BigBob85 <bigbob85@vizzed.com>
// Edited by Felu (http://www.feluowns.com)
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    if (Message.substr(0, 6) == "/nudge"){
        var Nudges = Message.substr(Message.search(' ')+1);
        MsgPlus.DisplayToast("Nudge Me", Nudges);
        for (var i = 0; i < Nudges; i++){
                //Little hack to send unlimited nudges
        var hwnd = Interop.Call('User32',"FindWindowW",'IMWindowClass',0);
        var nvoHwnd= Interop.Call('User32',"SendMessageW", hwnd, 273, 689,0);
        }
        return''
    }
}

function OnGetScriptCommands ()
{
commands  = "<ScriptCommands>";
commands +=     "<Command>";
commands +=         "<Name>nudge</Name>";
commands +=         "<Description>nudge</Description>";
commands +=         "<Parameters>&lt; No. of nudges !&gt;</Parameters>";
commands +=     "</Command>";
commands += "</ScriptCommands>";
return commands;
}


This post was edited on 10-29-2006 at 04:58 PM by Felu.
10-28-2006 07:19 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Nudges, Updated. - by EBFL on 10-28-2006 at 06:51 PM
RE: Nudges - by Felu on 10-28-2006 at 06:54 PM
RE: Nudges - by EBFL on 10-28-2006 at 07:00 PM
RE: Nudges - by Felu on 10-28-2006 at 07:19 PM
RE: Nudges - by EBFL on 10-28-2006 at 07:41 PM
RE: Nudges - by Zahid™ on 10-28-2006 at 07:45 PM
RE: Nudges - by EBFL on 10-28-2006 at 07:47 PM
RE: Nudges - by Felu on 10-28-2006 at 07:48 PM
RE: Nudges - by EBFL on 10-28-2006 at 07:57 PM
RE: Nudges - by Zahid™ on 10-28-2006 at 07:59 PM
RE: Nudges - by Joakin on 10-28-2006 at 08:02 PM
RE: Nudges - by felipEx on 10-29-2006 at 01:18 AM
RE: Nudges - by EBFL on 10-29-2006 at 02:32 PM
RE: Nudges - by Felu on 10-29-2006 at 02:36 PM
RE: Nudges - by EBFL on 10-29-2006 at 02:40 PM
RE: Nudges - by Felu on 10-29-2006 at 03:00 PM
RE: Nudges - by Spunky on 10-29-2006 at 03:07 PM
RE: Nudges, Updated. - by Plan-1130 on 10-29-2006 at 07:52 PM
RE: Nudges, Updated. - by Felu on 10-30-2006 at 03:19 AM
RE: Nudges, Updated. - by EBFL on 10-30-2006 at 11:49 AM
RE: RE: Nudges, Updated. - by Baggins on 10-31-2006 at 01:35 AM
RE: Nudges, Updated Again! - by Spunky on 10-31-2006 at 11:29 AM
RE: Nudges, Updated Again! - by Plan-1130 on 10-31-2006 at 12:52 PM
RE: Nudges, Updated Again! - by Plan-1130 on 11-01-2006 at 06:44 PM
RE: Nudges, Updated. - by EBFL on 11-09-2006 at 09:22 PM
RE: Nudges, Updated. - by Plan-1130 on 11-10-2006 at 01:59 PM
RE: Nudges, Updated. - by EBFL on 11-10-2006 at 04:02 PM
RE: Nudges, Updated. - by orlandopunk on 11-11-2006 at 09:38 PM
RE: Nudges, Updated. - by bigbob85 on 11-11-2006 at 09:44 PM
RE: Nudges, Updated. - by orlandopunk on 11-11-2006 at 09:53 PM
RE: Nudges, Updated. - by CookieRevised on 11-12-2006 at 01:18 AM
RE: Nudges, Updated. - by Plan-1130 on 11-13-2006 at 09:18 AM
RE: Nudges, Updated. - by markee on 11-13-2006 at 09:57 AM
RE: Nudges, Updated. - by Eljay on 11-13-2006 at 11:11 AM
RE: Nudges, Updated. - by CookieRevised on 11-21-2006 at 12:12 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