Click or drag to resize

BotPlugin Class

Base plugin class that all plugins should inherit from
Inheritance Hierarchy
SystemObject
  ff14bot.AClassesBotPlugin

Namespace:  ff14bot.AClasses
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public abstract class BotPlugin : IDisposable, 
	IEquatable<IBotPlugin>, IEquatable<BotPlugin>, IBotPlugin

The BotPlugin type exposes the following members.

Constructors
  NameDescription
Protected methodBotPlugin
Constructor for plugins
Top
Properties
  NameDescription
Public propertyAuthor
Name of the user who created the plugin
Public propertyButtonText
Text of the plugins button
Public propertyDescription
Short description about the plugin
Public propertyName
Name of the plugin
Public propertyVersion
Version of the plugin
Public propertyWantButton
Should the plugin settings button be enabled
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Public methodDoInitialize
Executes Initialize if it hasn't been run already
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodEquals(BotPlugin)
Indicates whether the current object is equal to another object of the same type.
Public methodEquals(IBotPlugin)
Indicates whether the current object is equal to another object of the same type.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOnButtonPress
Called when the user presses the settings button
Public methodOnDisabled
Executes the disabled action. This is called when the user has disabled this specific plugin via the GUI.
Public methodOnEnabled
Executes the enabled action. This is called when the user has enabled this specific plugin via the GUI.
Public methodOnInitialize
Executes the initialize action.
Public methodOnPulse
Executes the pulse action. This is called every "tick" of the bot.
Public methodOnShutdown
Executes the shutdown action. This is called when the bot is shutting down and when plugins are being reloaded.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Public operatorStatic memberInequality
Top
See Also