expectedDestination: Difference between revisions
Jump to navigation
Jump to search
m (formatted notes) |
m (example and format) |
||
Line 9: | Line 9: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Return expected destination of unit as an array | | Return expected destination of unit as an array.|= Description | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 16: | Line 16: | ||
|p1= person: [[Object]] |= Parameter 1 | |p1= person: [[Object]] |= Parameter 1 | ||
| [[Array]] |= Return value | | [[Array]] in form: | ||
*0: [[Position]] | |||
*1: planningMode | |||
*2: forceReplan|= Return value | |||
|x1=<code>_data = [[exepectedDestination]] [[player]];</code>|= EXAMPLE1 | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 13:04, 13 June 2018
Description
- Description:
- Return expected destination of unit as an array.
- Groups:
- Uncategorised
Syntax
- Syntax:
- Array = expectedDestination person
- Parameters:
- person: Object
- Return Value:
- Array in form:
- 0: Position
- 1: planningMode
- 2: forceReplan
Examples
- Example 1:
_data = exepectedDestination player;
Additional Information
- See also:
- setDestination
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- Posted on 16:24, 3 March 2007 (CET)
- Donnervogel
- For AI units I have found the following values: planningMode is "LEADER PLANNED" when the unit is ordered by the group leader to go somewhere or if the unit is the group leader and it follows a waypoint. Otherwise planningMode it is "DoNotPlan". Units moving in formation have "DoNotPlan" as long as they don't receive orders by the group leader. Units also have "DoNotPlan" when they don't move. Units executing special formation tasks like engaging or return to formation have "FORMATION PLANNED" as long they haven't fulfilled the task.