2015-07-03 21:14:23 +00:00
|
|
|
/*
|
|
|
|
* Author: KoffeinFlummi
|
2015-08-16 18:14:54 +00:00
|
|
|
* Checks if a unit is near an engineering vehicle.
|
2015-07-03 21:14:23 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-16 18:14:54 +00:00
|
|
|
* 0: Unit <OBJECT>
|
2015-07-03 21:14:23 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-16 18:14:54 +00:00
|
|
|
* Is near engineering vehicle <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [unit] call ace_repair_fnc_isNearRepairVehicle
|
2015-07-03 21:14:23 +00:00
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-09 06:54:44 +00:00
|
|
|
params ["_unit"];
|
|
|
|
TRACE_1("params",_unit);
|
|
|
|
|
|
|
|
private ["_nearObjects", "_return"];
|
2015-07-03 21:14:23 +00:00
|
|
|
|
|
|
|
_nearObjects = nearestObjects [_unit, ["Air","LandVehicle"], 20];
|
|
|
|
|
|
|
|
_return = false;
|
|
|
|
{
|
2015-11-10 02:11:48 +00:00
|
|
|
if ([_x] call FUNC(isRepairVehicle)) exitWith {_return = true;};
|
2015-08-09 06:54:44 +00:00
|
|
|
} forEach _nearObjects;
|
2015-07-03 21:14:23 +00:00
|
|
|
|
|
|
|
_return;
|