mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: alganthe
|
|
* Used to un-garrison units.
|
|
*
|
|
* Arguments:
|
|
* 0: Units to un-garrison <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [unit1, unit2, unit3] call ace_ai_fnc_unGarrison
|
|
*
|
|
* Public: Yes
|
|
*
|
|
*/
|
|
|
|
params [["_units", [], [[]]]];
|
|
|
|
_units = _units select {local _x};
|
|
|
|
{
|
|
if (!isPlayer _x && {local _x}) then {
|
|
_x enableAI "PATH";
|
|
_x enableAI "FSM";
|
|
|
|
private _leader = leader _x;
|
|
|
|
TRACE_3("fnc_ungarrison: unit and leader",_x , _leader, (_leader == _x));
|
|
|
|
_x setVariable [QGVAR(garrisonned), false, true];
|
|
|
|
if (_leader != _x) then {
|
|
doStop _x;
|
|
_x doFollow _leader;
|
|
|
|
} else {
|
|
_x doMove ((nearestBuilding (getPos _x)) buildingExit 0);
|
|
};
|
|
|
|
private _fnc_countGarrisonnedUnits = {
|
|
params ["_unit", "_bool"];
|
|
if (_bool) then {
|
|
({(_x getVariable [QGVAR(garrisonned), false]) && {!isPlayer _x}} count units _unit)
|
|
} else {
|
|
({!(_x getVariable [QGVAR(garrisonned), false]) && {!isPlayer _x}} count units _unit)
|
|
};
|
|
|
|
};
|
|
|
|
if ([_x, true] call _fnc_countGarrisonnedUnits == ({!isPlayer _x} count (units _x)) - 1 || {[_x, false] call _fnc_countGarrisonnedUnits == {!isPlayer _x} count (units _x)}) then {
|
|
LOG("fnc_ungarrison: enableAttack true");
|
|
(group _x) enableAttack true;
|
|
};
|
|
};
|
|
} foreach _units;
|