38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
/*
|
|
* Function: xpdb_helpers_fnc_addAllCargo
|
|
* Author: NikolaiF90, J.Schmidt
|
|
* Edit: 07.27.2024
|
|
* Copyright © 2024 NikolaiF90, J.Schmidt, All rights reserved
|
|
*
|
|
* Do not edit without permission!
|
|
*
|
|
* This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivative 4.0 International License.
|
|
* To view a copy of this license, vist https://creativecommons.org/licenses/by-nc-nd/4.0/ or send a letter to Creative Commons,
|
|
* PO Box 1866, Mountain View, CA 94042
|
|
*
|
|
* [Description]
|
|
* Adds all cargo to a container.
|
|
*
|
|
* Arguments:
|
|
* 0: Container object <OBJECT> (default: nil)
|
|
* 1: Types of cargo items to add to container <ARRAY> (default: [])
|
|
*
|
|
* Return Value:
|
|
* N/A
|
|
*
|
|
* Examples:
|
|
* [_container, _cargo] call xpdb_helpers_fnc_addAllCargo
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
params ["_container", "_cargoArray", "_fnc_addToCargo"];
|
|
|
|
{
|
|
private _name = _x;
|
|
private _count = (_cargoArray # 1) # _forEachIndex;
|
|
[_container, _name, _count] call _fnc_addToCargo;
|
|
true
|
|
} count (_cargoArray # 0); |