mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
622 B
Plaintext
30 lines
622 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Assign an repair vehicle
|
|
*
|
|
* Arguments:
|
|
* 0: The module logic <LOGIC>
|
|
* 1: units <ARRAY>
|
|
* 2: activated <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None <NIL>
|
|
*
|
|
* 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, "ACE_isRepairVehicle", _setting, true] call EFUNC(common,assignObjectsInList);
|
|
[synchronizedObjects _logic, "ACE_isRepairVehicle", _setting, true] call EFUNC(common,assignObjectsInList);
|
|
};
|
|
|
|
true
|