mirror of
https://github.com/IT07/a3_vemf_reloaded.git
synced 2024-08-30 16:52:11 +00:00
32 lines
913 B
Plaintext
32 lines
913 B
Plaintext
/*
|
|
Author: IT07
|
|
|
|
Description:
|
|
checks for players within given distance of given location/position
|
|
|
|
Params:
|
|
_this select 0: POSITION - center of area to check around
|
|
_this select 1: SCALAR - radius around the position to check for players
|
|
|
|
Returns:
|
|
BOOL - true if player(s) found
|
|
*/
|
|
|
|
private ["_found","_pos","_rad"];
|
|
// By default, we assume that there are no players close. The distance check below should prove otherwise if there are players close
|
|
_found = false;
|
|
params [["_pos",[],[[]]], ["_rad",-1,[0]]];
|
|
if (((count _pos) isEqualTo 3) AND (_rad > -1)) then
|
|
{
|
|
{
|
|
if (isPlayer _x AND speed _x < 250) then
|
|
{
|
|
private ["_isClose"];
|
|
_isClose = if ((position _x distance _pos) < _rad) then { true } else { false };
|
|
if _isClose then { _found = true };
|
|
};
|
|
} forEach allPlayers;
|
|
};
|
|
|
|
_found
|