What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Ignore ReceiveNotify()

Ignore ReceiveNotify()
Author: Message:
zigomar10
Full Member
***

Avatar

Posts: 345
– / Male / –
Joined: Mar 2003
RE: Ignore ReceiveNotify()
ok, example in VB: first u have to define a variable in the general declarations. for example:
code:
Dim ignore as integer

then u do the following in the parsecommand:
code:
ElseIf (StrComp(LCase(sCommand), "/xpingvb", vbTextCompare) = 0)
Then
sResult = Chr(nCCNotify) + "ping." 'The notify code must be 5 characters long
sResult = sResult + "Ping?"
ignore = 1       
ParseCommand = True
Exit Function
End If

and, finally in the recieve notify:
code:
If (StrComp(sNotifyCode, "ping.", vbTextCompare) = 0) Then
If ignore = 1 Then
ignore = 0

Else       
sTextToSend = "Pong!"
End If
ReceiveNotify = True
Exit Function
End If

;)

This post was edited on 08-22-2003 at 07:06 AM by zigomar10.
08-22-2003 07:04 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Ignore ReceiveNotify() - by wipey on 08-20-2003 at 01:24 AM
RE: Ignore ReceiveNotify() - by Predatory Kangaroo on 08-20-2003 at 04:16 AM
RE: Ignore ReceiveNotify() - by wipey on 08-20-2003 at 11:25 AM
RE: Ignore ReceiveNotify() - by Whacko on 08-20-2003 at 12:26 PM
RE: Ignore ReceiveNotify() - by wipey on 08-20-2003 at 12:50 PM
RE: Ignore ReceiveNotify() - by Predatory Kangaroo on 08-20-2003 at 12:56 PM
RE: Ignore ReceiveNotify() - by wipey on 08-20-2003 at 03:28 PM
RE: Ignore ReceiveNotify() - by Predatory Kangaroo on 08-21-2003 at 05:17 AM
RE: Ignore ReceiveNotify() - by wipey on 08-21-2003 at 10:53 AM
RE: Ignore ReceiveNotify() - by wipey on 08-21-2003 at 06:53 PM
RE: Ignore ReceiveNotify() - by zigomar10 on 08-22-2003 at 07:04 AM
RE: Ignore ReceiveNotify() - by wipey on 08-22-2003 at 01:15 PM
RE: Ignore ReceiveNotify() - by wipey on 08-22-2003 at 10:35 PM
RE: Ignore ReceiveNotify() - by zigomar10 on 08-23-2003 at 06:25 AM
RE: Ignore ReceiveNotify() - by zigomar10 on 08-23-2003 at 06:27 AM
RE: Ignore ReceiveNotify() - by wipey on 08-23-2003 at 03:05 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