findNearestEnemy: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma1 | | arma1 | ||
|1.00 | |1.00 | ||
|gr1= Object Detection | |gr1= Object Detection | ||
| Finds the nearest enemy to the specified position. Returns a null object if the object's group does not [[knowsAbout|know about]] any enemies. This command will return nearest object that is known to the unit and is considered enemy. An empty vehicle that is part of enemy group assets (see [[addVehicle]]) can be returned as valid nearest target. | | Finds the nearest enemy to the specified position. Returns a null object if the object's group does not [[knowsAbout|know about]] any enemies. This command will return nearest object that is known to the unit and is considered enemy. An empty vehicle that is part of enemy group assets (see [[addVehicle]]) can be returned as valid nearest target. | ||
| object '''findNearestEnemy''' position | | object '''findNearestEnemy''' position | ||
|p1= object: [[Object]] | |p1= object: [[Object]] | ||
|p2= position: [[Object]] or [[Array]] in format [[PositionAGL]] or [[Position2D]] | |p2= position: [[Object]] or [[Array]] in format [[PositionAGL]] or [[Position2D]] | ||
| [[Object]] | | [[Object]] | ||
|x1= <code>_myNearestEnemy = ([[units]] _myGroup [[select]] 0) [[findNearestEnemy]] [[player]];</code> | |x1= <code>_myNearestEnemy = ([[units]] _myGroup [[select]] 0) [[findNearestEnemy]] [[player]];</code> | ||
|x2= <code>_myNearestEnemy = [[player]] [[findNearestEnemy]] [[player]];</code> | |x2= <code>_myNearestEnemy = [[player]] [[findNearestEnemy]] [[player]];</code> | ||
| [[nearestBuilding]], [[nearestObject]], [[nearestObjects]], [[nearObjects]], [[nearestLocation]], [[nearEntities]], [[nearTargets]], [[nearSupplies]], [[nearestLocationWithDubbing]], [[nearObjectsReady]], [[nearRoads]] | | [[nearestBuilding]], [[nearestObject]], [[nearestObjects]], [[nearObjects]], [[nearestLocation]], [[nearEntities]], [[nearTargets]], [[nearSupplies]], [[nearestLocationWithDubbing]], [[nearObjectsReady]], [[nearRoads]] | ||
}} | }} |
Revision as of 00:37, 18 January 2021
Description
- Description:
- Finds the nearest enemy to the specified position. Returns a null object if the object's group does not know about any enemies. This command will return nearest object that is known to the unit and is considered enemy. An empty vehicle that is part of enemy group assets (see addVehicle) can be returned as valid nearest target.
- Groups:
- Object Detection
Syntax
- Syntax:
- object findNearestEnemy position
- Parameters:
- object: Object
- position: Object or Array in format PositionAGL or Position2D
- Return Value:
- Object
Examples
- Example 1:
_myNearestEnemy = (units _myGroup select 0) findNearestEnemy player;
- Example 2:
_myNearestEnemy = player findNearestEnemy player;
Additional Information
- See also:
- nearestBuildingnearestObjectnearestObjectsnearObjectsnearestLocationnearEntitiesnearTargetsnearSuppliesnearestLocationWithDubbingnearObjectsReadynearRoads
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