ACE3/addons/repair/functions/fnc_moduleAssignEngineer.sqf

30 lines
621 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Assign an engineer role to a unit
*
* Arguments:
* 0: The module logic <LOGIC>
* 1: units <ARRAY>
* 2: activated <BOOL>
*
* Return Value:
* None <NIL>
*
* Public: No
*/
#include "script_component.hpp"
2015-08-15 13:49:41 +00:00
params ["_logic"];
if (!isNull _logic) then {
2015-08-15 13:49:41 +00:00
private ["_list", "_setting"];
_list = _logic getvariable ["EnableList",""];
_setting = _logic getvariable ["role",0];
2015-08-15 13:49:41 +00:00
[_list, "ACE_IsEngineer", _setting, true] call EFUNC(common,assignObjectsInList);
[synchronizedObjects _logic, "ACE_IsEngineer", _setting, true] call EFUNC(common,assignObjectsInList);
};
2015-08-15 13:49:41 +00:00
true