mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e07b71faf0
Conflicts: addons/medical/functions/fnc_moduleAssignMedicRoles.sqf addons/medical/functions/fnc_moduleAssignMedicalVehicle.sqf
27 lines
624 B
Plaintext
27 lines
624 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Assign a medical role to a unit.
|
|
*
|
|
* Arguments:
|
|
* 0: The module logic <OBJECT>
|
|
* 1: Synchronized units <ARRAY>
|
|
* 2: Activated <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_logic"];
|
|
|
|
if (!isNull _logic) then {
|
|
private ["_list", "_setting"];
|
|
_list = _logic getVariable ["EnableList", ""];
|
|
_setting = _logic getVariable ["role", 0];
|
|
|
|
[_list, QGVAR(medicClass), _setting, true] call EFUNC(common,assignObjectsInList);
|
|
[synchronizedObjects _logic, QGVAR(medicClass), _setting, true] call EFUNC(common,assignObjectsInList);
|
|
};
|