BotEvents Class |
Namespace: ff14bot.NeoProfile
public static class BotEvents
The BotEvents type exposes the following members.
Name | Description | |
---|---|---|
PulseEvents | Pulse events. |
Name | Description | |
---|---|---|
OnBotChanged | Fired when the current bot is changed with the usage of TreeRoot.SetCurrent. | |
OnBotStarted | Fired right after the bot has started.
This is fired from the bot thread, before any logic starts executing. | |
OnBotStartRequested |
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. | |
OnBotStopped |
Fired right after the bot has been stopped.
This is fired from the bot thread, before the thread exits. | |
OnBotStopRequested |
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. | |
OnPulse | Fired on every bot pulse if bot events are enabled. | |
PreBotStarting | Fired right before the bot begins starting. |