mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
39 lines
730 B
Plaintext
39 lines
730 B
Plaintext
/*
|
|
* Author: bux578
|
|
* Switches to a unit close to a clicked map position
|
|
*
|
|
* Arguments:
|
|
* 0: Faction
|
|
* 0: unit <OBJECT>
|
|
* 1: sides <ARRAY>
|
|
* 1: Map Position <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [[unit, _sides], [20, 30]] call ace_switchunits_fnc_handleMapClick
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_sideNearest"];
|
|
|
|
params ["_faction", "_pos"];
|
|
_faction params ["", "_sides"];
|
|
|
|
_sideNearest = [];
|
|
|
|
{
|
|
if ([_x] call FUNC(isValidAi) && (side group _x in _sides)) then {
|
|
_sideNearest pushBack _x;
|
|
};
|
|
nil
|
|
} count (nearestObjects [_pos, ["Man"], 15]);
|
|
|
|
if (count _sideNearest > 0) then {
|
|
[_sideNearest select 0] call FUNC(switchUnit);
|
|
openMap false;
|
|
};
|