Event when the contact sends a nudge? |
Author: |
Message: |
mathieumg
Full Member
Posts: 181 Reputation: 2
35 / /
Joined: May 2004
|
RE: Event when the contact sends a nudge?
quote: (1:57 PM) You sent a nudge !
They do show up
Official MessengerPlus! Live French Translator
Official StuffPlug 3 French Translator
|
|
06-26-2006 05:57 PM |
|
|
JonnyT
Junior Member
Posts: 28
Joined: Jun 2006
|
RE: Event when the contact sends a nudge?
ah yeah, they show up in the MPL chat logs but not in the messenger chat logs.
|
|
06-26-2006 06:03 PM |
|
|
mathieumg
Full Member
Posts: 181 Reputation: 2
35 / /
Joined: May 2004
|
RE: Event when the contact sends a nudge?
Means that Patchou can easily add that event
Official MessengerPlus! Live French Translator
Official StuffPlug 3 French Translator
|
|
06-26-2006 06:09 PM |
|
|
Mr. Bougo
Junior Member
Posts: 51
34 / / –
Joined: Jun 2006
|
O.P. RE: Event when the contact sends a nudge?
Yup, i did a lil debug script that writes any message sent and the nudges aren't shown in the debug script...
I wanted to do a nudge-back script
|
|
06-26-2006 06:14 PM |
|
|
Lou
Veteran Member
Posts: 2475 Reputation: 43
– / /
Joined: Aug 2004
|
RE: Event when the contact sends a nudge?
I believe it is supported, but Patchou may have forgotten to add the number in the Documentation.
The future holds bright things in it\\\'s path, but only time will tell what they are and where they come from.
Messenger Stuff Forums
|
|
06-26-2006 06:22 PM |
|
|
wlmcrap
Junior Member
David
Posts: 71 Reputation: -6
31 / / –
Joined: Jul 2006
|
RE: Event when the contact sends a nudge?
Can someone please give me the code for if when a contact sends a nudge it automatically replys with "Get Lost!" or "Go Away!" or others that i won't mention.
Thnx
|
|
07-05-2006 02:14 AM |
|
|
mathieumg
Full Member
Posts: 181 Reputation: 2
35 / /
Joined: May 2004
|
RE: Event when the contact sends a nudge?
If you'd have read the thread carefully, you would know that it is not yet possible to catch a nudge event, unfortunately.
Official MessengerPlus! Live French Translator
Official StuffPlug 3 French Translator
|
|
07-05-2006 05:48 AM |
|
|
Mr. Bougo
Junior Member
Posts: 51
34 / / –
Joined: Jun 2006
|
O.P. RE: RE: Event when the contact sends a nudge?
quote: Originally posted by .Lou
I believe it is supported, but Patchou may have forgotten to add the number in the Documentation.
No it isnt supported... The ChatWndReceiveMessage event isnt called when you get or send a nudge...
Try this and you'll see...
code: function OnEvent_ChatWndReceiveMessage(ChatWnd,Orig,Msg,MsgKind){
Debug.Trace("Window handle: " + ChatWnd.Handle)
Debug.Trace("Origin: " + Orig)
Debug.Trace("Message: " + Msg)
Debug.Trace("Message Kind: " + MsgKind)
Debug.Trace("")
Debug.Trace("____________")
Debug.Trace("")
}
Huh, indent doesnt work with [ code] ????
This post was edited on 07-05-2006 at 06:16 AM by Mr. Bougo.
|
|
07-05-2006 06:12 AM |
|
|
wlmcrap
Junior Member
David
Posts: 71 Reputation: -6
31 / / –
Joined: Jul 2006
|
RE: Event when the contact sends a nudge?
If nobody wants to make my script can someone at least plz look at my code and fix it for me?
Code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
if (Message == Origin+" just sent you a Nudge!")
{
ChatWnd.SendMessage("Go Away");
}
return "Message";
}
|
|
07-05-2006 09:33 AM |
|
|
foaly
Senior Member
Posts: 718 Reputation: 20
38 / /
Joined: Jul 2006
|
RE: Event when the contact sends a nudge?
wlmcrap
that won't work because OnEvent_ChatWndReceiveMessage isn't called when recieving a nudge...
|
|
07-05-2006 09:38 AM |
|
|
Pages: (3):
« First
«
1
[ 2 ]
3
»
Last »
|
|