ACE3/addons/zeus/functions/fnc_moduleSetMedicalFacility.sqf
Mike-MF 1c6c4d6bff
All - Fix parentheses around code (#10073)
* Fix Brackets around code

* Update fnc_handleFired.sqf

* Shouldn't have changed this one

---------

Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-06-18 14:08:03 +00:00

53 lines
1.5 KiB
Plaintext

#include "..\script_component.hpp"
/*
* Author: kymckay, Glowbal
* Assigns a medic role from the medical module to a unit
*
* Arguments:
* 0: The module logic <OBJECT>
* 1: Synchronized units <ARRAY>
* 2: Activated <BOOL>
*
* Return Value:
* None
*
* Example:
* [LOGIC, [bob, kevin], true] call ace_zeus_fnc_moduleSetMedicalFacility
*
* Public: No
*/
params ["_logic"];
if !(local _logic) exitWith {};
if !(GETEGVAR(medical,enabled,false)) then {
[LSTRING(RequiresAddon)] call FUNC(showMessage);
} else {
private _mouseOver = GETMVAR(bis_fnc_curatorObjectPlaced_mouseOver,[""]);
if ((_mouseOver select 0) != "OBJECT") then {
[LSTRING(NothingSelected)] call FUNC(showMessage);
} else {
private _unit = (_mouseOver select 1);
if (_unit isKindOf "Man" || {!(_unit isKindOf "Building")}) then {
[LSTRING(OnlyStructures)] call FUNC(showMessage);
} else {
if !(alive _unit) then {
[LSTRING(OnlyAlive)] call FUNC(showMessage);
} else {
if (GETVAR(_unit,EGVAR(captives,isHandcuffed),false)) then {
[LSTRING(OnlyNonCaptive)] call FUNC(showMessage);
} else {
if !(GETVAR(_unit,EGVAR(medical,isMedicalFacility),false)) then {
_unit setVariable [QEGVAR(medical,isMedicalFacility), true, true];
};
};
};
};
};
};
deleteVehicle _logic;