I can confirm it doesn't work, the bot will just not mount Flight Form, if it does or if its forced to it will not fly, but go on ground in Flight Form @Droidz, it will only do so if there are no nodes nearby that the bot found AND if I do
MountTask.Takeof();
I managed to get it to mount after mining/herbing with this
Usefuls.ForceIsFlyableArea = true;
FarmingEvents.OnFarmSuccessful += (WoWGameObject node) =>
{
MovementManager.StopMoveTo();
if (!ObjectManager.Me.IsMounted)
{
MountTask.Mount(true, MountTask.MountCapacity.Fly);
MountTask.Takeof();
}
};
but it does walks on ground as I said.