mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8f46ffd8d5
count -> forEach Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
44 lines
931 B
Plaintext
44 lines
931 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Jonpas
|
|
* Adds spare parts to a vehicle.
|
|
*
|
|
* Arguments:
|
|
* 0: The module logic <OBJECT>
|
|
* 1: Synchronized units <ARRAY>
|
|
* 2: Activated <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [logic] call ace_repair_fnc_moduleAddSpareParts
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_logic"];
|
|
|
|
if (!isNull _logic) then {
|
|
private _list = _logic getVariable ["List", ""];
|
|
private _part = _logic getVariable ["Part", 0];
|
|
private _amount = _logic getVariable ["Amount", 1];
|
|
|
|
// Parse list
|
|
_list = [_list, true, true] call EFUNC(common,parseList);
|
|
|
|
// Add synchronized objects to list
|
|
{
|
|
_list pushBack _x;
|
|
} forEach (synchronizedObjects _logic);
|
|
|
|
if (_list isEqualTo []) exitWith {};
|
|
|
|
TRACE_3("Module info parsed",_list,_part,_amount);
|
|
|
|
// Add spare parts
|
|
{
|
|
[_x, _amount, _part, true] call FUNC(addSpareParts);
|
|
} forEach _list;
|
|
};
|