mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
663 B
Plaintext
35 lines
663 B
Plaintext
/*
|
|
* Author: bux578
|
|
* Returns an array of alive players in a given radius around a given location
|
|
*
|
|
* Arguments:
|
|
* 0: Center position <POSTION>
|
|
* 1: Radius <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Player units <ARRAY<OBJECT>>
|
|
*
|
|
* Example:
|
|
* [[300,300,0], 100] call FUNC(nearestPlayers)
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_nearestPlayers"];
|
|
|
|
PARAMS_2(_position,_radius);
|
|
|
|
_position = _this select 0;
|
|
_radius = _this select 1;
|
|
|
|
_nearestPlayers = [];
|
|
|
|
{
|
|
if ([_x] call EFUNC(common,isPlayer) && {alive _x}) then {
|
|
_nearestPlayers pushBack _x;
|
|
};
|
|
} forEach (nearestObjects [_position, ["Man"], _radius]);
|
|
|
|
_nearestPlayers
|