Click or drag to resize

BotEvents Class

Provides events for common situations in the bot.
Inheritance Hierarchy
SystemObject
  ff14bot.NeoProfileBotEvents

Namespace:  ff14bot.NeoProfile
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static class BotEvents

The BotEvents type exposes the following members.

Methods
  NameDescription
Public methodStatic memberPulseEvents
Pulse events.
Top
Events
  NameDescription
Public eventStatic memberOnBotChanged
Fired when the current bot is changed with the usage of TreeRoot.SetCurrent.
Public eventStatic memberOnBotStarted
Fired right after the bot has started.

This is fired from the bot thread, before any logic starts executing.

Public eventStatic memberOnBotStartRequested
Fired right before the bot is started.

Only use this event to signal that a 'Start' should be canceled. In general, use the OnBotStarted event.

Public eventStatic memberOnBotStopped
Fired right after the bot has been stopped.

This is fired from the bot thread, before the thread exits.

Public eventStatic memberOnBotStopRequested
Fired when a bot stop is requested.

Only use this event to signal that a 'Stop' should be canceled. In general use the OnBotStopped event.

Public eventStatic memberOnPulse
Fired on every bot pulse if bot events are enabled.
Public eventStatic memberPreBotStarting
Fired right before the bot begins starting.
Top
See Also