Hello, i would like to make a pager plugin, and i want to get the event when the user type !page...
I tried that
Public Function ReceiveNotify(ByVal sNotifyCode As String, ByVal sText As String, ByVal sContactName As String, ByVal oConversationWnd As Object, ByRef sTextToSend As String) As Boolean
    'This sample responds to a !ping request sent by /xpingvb
    If (StrComp(sNotifyCode, "page", vbTextCompare) = 0) Then
       MsgBox "test " & sText
        Exit Function
    End If
    
    'Give other plugins a chance to receive this notification
    ReceiveNotify = False
End Function
but it doesn't work !
Help would be very appreciated 
Thanks