Click or drag to resize

BotEventsOnBotStartRequested Event

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.

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

Value

Type: ff14bot.NeoProfileBotEventsOnBotStartStopRequestedDelegate
Remarks

This is fired from the thread that invoked the Start call.

To cancel the start, set the Cancel property to true.

No initialization should be done from subscribers to this event, as it is impossible to know if the bot will be started, because another subscriber might cancel the start.

For initialization, see OnBotStarted.

See Also