ACE3/addons/zeus/functions/fnc_moduleSearchNearby.sqf

54 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-05-18 20:19:52 +00:00
/*
* Author: SilentSpike
* Commands the group the module is placed on to search the nearest building
*
* Arguments:
* 0: The module logic <OBJECT>
* 1: Synchronized units <ARRAY>
* 2: Activated <BOOL>
*
* Return Value:
* None
2016-05-18 20:19:52 +00:00
*
* Example:
* [LOGIC, [bob, kevin], true] call ace_zeus_fnc_moduleSearchNearby
*
2016-05-18 20:19:52 +00:00
* Public: No
*/
#include "script_component.hpp"
params ["_logic"];
2016-05-18 20:19:52 +00:00
if !(local _logic) exitWith {};
2016-05-18 20:19:52 +00:00
//Validate the module target:
private _unit = effectiveCommander (attachedTo _logic);
private _building = nearestBuilding (getPosASL _unit);
scopeName "Main";
private _fnc_errorAndClose = {
params ["_msg"];
deleteVehicle _logic;
[_msg] call FUNC(showMessage);
2016-05-18 20:19:52 +00:00
breakOut "Main";
};
switch (false) do {
case !(isNull _unit): {
[LSTRING(NothingSelected)] call _fnc_errorAndClose;
};
case (_unit isKindOf "CAManBase"): {
[LSTRING(OnlyInfantry)] call _fnc_errorAndClose;
};
case (alive _unit): {
[LSTRING(OnlyAlive)] call _fnc_errorAndClose;
};
case (_unit distance _building < 500): {
[LSTRING(BuildingTooFar)] call _fnc_errorAndClose;
};
};
//Perform the module function:
[QGVAR(moduleSearchNearby), [_unit], _unit] call CBA_fnc_targetEvent;
deleteVehicle _logic;