[Request] Auto send winks/nudges? - Printable Version
-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [Request] Auto send winks/nudges? (/showthread.php?tid=66576)
[Request] Auto send winks/nudges? by KaaY-JaaY on 09-23-2006 at 08:14 PM
i dont know if its possible to make a Script, like AutoReply, which Actuly Send's Nudges & spessific Customized Winks by it self, when Certain Fraises or Words are beeing Sent to you in a Conversation?
----------
Personaly i have no clue Were to start in any Scripting, but i have Read the Forum's & i notice alot of good Scripter's.
so im wondering if is it possible to Make something like this?
or Maybe this is a Bad idea All toghetter?
----------
!send Nudge
!send Winks "<name of wink> or sometihng like that?
RE: [Request] Auto send winks/nudges? by Silentdragon on 09-23-2006 at 08:17 PM
You can just do /nudge to send a nudge. As for winks I'm unsure because I don't have MsgPlus installed right now. So you could use Answering Machine Plus to detect the phrase or word and reply with /nudge
RE: [Request] Auto send winks/nudges? by KaaY-JaaY on 09-23-2006 at 08:20 PM
Yeah i was thinkin the Same thing about the Nudge..
& even tryed having that as an Answer, but fore some reason it
Crashed my msn
but the Nudge is Easy enough i guess.. (/nudge)
its the Winks im more Qurrius about.
thx's fore a Quick Reply =)
----------------
is there som1 that knows if this can be done?
im sure lots of u Have "spleak" on your list... its a Bot, and "she" has the Ability to send Winks, -when- u Send some kind of a "tekst msg"
RE: RE: [Request] Auto send winks/nudges? by CookieRevised on 09-23-2006 at 11:54 PM
quote: Originally posted by KaaY-JaaY
Yeah i was thinkin the Same thing about the Nudge..
& even tryed having that as an Answer, but fore some reason it
Crashed my msn
but the Nudge is Easy enough i guess.. (/nudge)
its the Winks im more Qurrius about.
Use /wink to open the wink dialog...
What other programs do (note: they are other programs and mostly messenger clients on their own; as such they can do a lot more) is sending the wink directly via the protocol. This isn't so easy to do with Plus! (let alone scripting).
RE: RE: RE: [Request] Auto send winks/nudges? by KaaY-JaaY on 09-24-2006 at 04:07 AM
quote: Originally posted by CookieRevised
What other programs do (note: they are other programs and mostly messenger clients on their own; as such they can do a lot more) is sending the wink directly via the protocol. This isn't so easy to do with Plus! (let alone scripting.)
Well Thank's fore the Reply =)
i figured it whouldent be Easy, but Not impossible, but in anyCase. it was just a Question in which i have gotten an Answer to
so thanks.
RE: [Request] Auto send winks/nudges? by effection on 09-24-2006 at 07:16 PM
well i was bord and coded up a basic nudge one, needs a nice GUI to add words to though, something like the filesender GUI would be nice.
code: var autoSendNudge = false;
var words = new Array;
words = ("hello", "hi", "hey");
function OnEvent_ChatWndReceiveMessage(wnd, user, message, kind)
{
if(autoSendNudge == true)
{
for(var i = 0; i < words.length; i++)
{
if(message.match(words[i]) != null)
{
wnd.SendMessage("/nudge");
break;
}
}
// Check for command
if(message.charAt(0) == "!")
{
var command;
if(message.indexOf(" ") == -1)
{
command = message.substring(1, message.length);//.trim();
}
Debug.Trace("Command: "+command);
switch(command)
{
case "nudge":
var message;
message = "/nudge";
wnd.SendMessage(message);
message = '';
break;
}
}
}
return message;
}
RE: [Request] Auto send winks/nudges? by xsouldeath on 09-26-2006 at 12:38 AM
did u doods even try that
from the pros of this site
i heard /nudge doesnt work and u have to use some crazy packets stuff
RE: [Request] Auto send winks/nudges? by Silentdragon on 09-26-2006 at 12:44 AM
Why wouldn't it work? I think your talking about detecting receiving nudges. You can send /nudge just fine, but you can't detect a nudge with /nudge.
RE: [Request] Auto send winks/nudges? by xsouldeath on 09-26-2006 at 12:49 AM
ahhh i see thanks... muhahaha lol
if (Message=="your bot sucks")
while (1=1 &&Message!="have mercy")
{
ChatWnd.SendMessage("/nudge");
}
lol
well i guess nudgeback is more complex ..mmm
but oh well i guess if someone nudges me i could have a self invoked command that sends them nudges
in any case with windows live messenger
someone was sending me like 100 nudges
and i tried using nudg0r or some unlimited nudgemania utility and both didnt work
then i installed some windows live messenger patch that i miraculously found on google and then unlimited nudges worked...
lol well to anyone in the hole that i was while the apatch.tk site was down..
You can use A-Patch. It has a feature to do unlimited nudges.
http://apatch.tk
Mirror 1: http://rapidshare.de/files/34460266/A-Patch130rc1b49_WLM.zip.html
Mirror 2: http://up-file.com/download/de3453568502/A-Patch130rc1b49-WLM.zip.html
RE: [Request] Auto send winks/nudges? by Jimbo on 09-26-2006 at 06:13 AM
Or you could use cookie's script to get unlimited nudges
Here is the link
RE: [Request] Auto send winks/nudges? by CookieRevised on 09-26-2006 at 06:45 AM
quote: Originally posted by Silentdragon
Why wouldn't it work? You can send /nudge just fine.
You can't always send a command to the chat window! (hence why ChatWnd.EditChangeAllowed must be used whenever you use ChatWnd.SendMessage)
|