Click or drag to resize

CommonTasksCanLand Method (Vector3)

Attempts to find if we can land by descending straight down from a given location Providing a vector that is more then 100yards away in 3d space will always return maybe as after that point the results were unreliable.

Namespace:  ff14bot.Behavior
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static Task<CanLandResult> CanLand(
	Vector3 pointInAir
)

Parameters

pointInAir
Type: Clio.UtilitiesVector3

Return Value

Type: TaskCanLandResult
CanLandResult.Yes = If we descend from pointInAir we will land in a location where we can dismount CanLandResult.No = If we descend from pointInAir we will NOT land in a location where we can dismount CanLandResult.Maybe = Our raycast was limited in resolution, and as such the provided point was too far away or we were too far above ground
See Also