document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Imports Globals.GlobalResources
  2.  
  3. Public Class Class1
  4.     Implements Globals.Plgn
  5.  
  6.     Public Sub Config() Implements Globals.Plgn.Config
  7.         \' Put code to config plugin here (usually open a new form window would be best)
  8.     End Sub
  9.  
  10.     Public ReadOnly Property Name As String Implements Globals.Plgn.Name
  11.         Get
  12.             Return "" \'Inside quotes put the name the plugin will undertake in the bot.
  13.         End Get
  14.     End Property
  15.  
  16.     Public Function ProcessMessage(InputMessage As Globals.GlobalResources.Message) As Boolean Implements Globals.Plgn.ProcessMessage
  17.         \' 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.
  18.         Return False
  19.     End Function
  20.  
  21. End Class
  22.  
  23. \'NOTE: remember to reference the globals.dll interface.
');