inAreaArray: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>") |
||
Line 43: | Line 43: | ||
|r2= [[Array]]: [[Object]]s and/or [[Position]]s inside the area | |r2= [[Array]]: [[Object]]s and/or [[Position]]s inside the area | ||
|x1= < | |x1= <sqf>vehicles inAreaArray myTrigger;</sqf> | ||
|x2= < | |x2= <sqf>allUnits inAreaArray "myMarker";</sqf> | ||
|x3= < | |x3= <sqf>allPlayers inAreaArray myLocation;</sqf> | ||
|x4= <code>allDead inAreaArray [<nowiki/>[100, 100, 0], 20, 30, 45, false, 10];</code> | |x4= <code>allDead inAreaArray [<nowiki/>[100, 100, 0], 20, 30, 45, false, 10];</code> |
Revision as of 10:23, 13 May 2022
Description
- Description:
- Returns given list of Objects and/or Positions that are in the given area, area defined by a trigger, marker, location or array.
- Groups:
- TriggersMarkersLocationsPositions
Syntax
- Syntax:
- positions inAreaArray area
- Parameters:
- positions: Array of Objects and/or Positions
- area: Object, Location or String - the defined area:
- Return Value:
- Array: Objects and/or Positions inside the trigger area
Alternative Syntax
- Syntax:
- positions inAreaArray [center, a, b, angle, isRectangle, c]
- Parameters:
- positions: Array - Objects and/or Positions to check
- center: Array - center of the area in format Position3D, Position2D
- a: Number - x axis (x / 2)
- b: Number - y axis (y / 2)
- angle: Number - (Optional, default 0) rotation angle
- isRectangle: Boolean - (Optional, default false) true if rectangle, false if ellipse
- c: Number - (Optional, default -1: unlimited) z axis (z / 2)
- Return Value:
- Array: Objects and/or Positions inside the area
Examples
- Example 1:
- Example 2:
- Example 3:
- Example 4:
allDead inAreaArray [[100, 100, 0], 20, 30, 45, false, 10];
Additional Information
- See also:
- inArea triggerArea
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
- Posted on June 11, 2017 - 21:33 (UTC)
- Tankbuster
-
The array you send the command can be filtered. For example:
vehicles select { _x isKindOf "StaticWeapon" } inAreaArray "myMarker"
Will return only the statics inside the given marker