Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Imports Globals.GlobalResources
- Public Class Class1
- Implements Globals.Plgn
- Public Sub Config() Implements Globals.Plgn.Config
- ' Put code to config plugin here (usually open a new form window would be best)
- End Sub
- Public ReadOnly Property Name As String Implements Globals.Plgn.Name
- Get
- Return "" 'Inside quotes put the name the plugin will undertake in the bot.
- End Get
- End Property
- Public Function ProcessMessage(InputMessage As Globals.GlobalResources.Message) As Boolean Implements Globals.Plgn.ProcessMessage
- ' Put code here to handle a received message. Messages are parsed for ease of use, simply type "InputMessage." to get any of the parsed info.
- Return False
- End Function
- End Class
- 'NOTE: remember to reference the globals.dll interface.
Advertisement
Add Comment
Please, Sign In to add comment