Click or drag to resize

CommonBehaviorsMoveAndStop Method (ValueRetrieverVector3, Single, Boolean, String, RunStatus)

Creates a behavior to move the current character to the specified location, and stop when within the specified range.

Namespace:  ff14bot.Behavior
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static Composite MoveAndStop(
	ValueRetriever<Vector3> location,
	float range,
	bool stopInRange = false,
	string destinationName = null,
	RunStatus stopStatus = RunStatus.Failure
)

Parameters

location
Type: ff14bot.BehaviorValueRetrieverVector3
The location.
range
Type: SystemSingle
The range.
stopInRange (Optional)
Type: SystemBoolean
Whether to stop when within the specified range.
destinationName (Optional)
Type: SystemString
stopStatus (Optional)
Type: TreeSharpRunStatus
If you are using this within a Sequence, you may want to change this to Success.

Return Value

Type: Composite
.
Remarks
Created 3/11/2012.
See Also