server/addons/misc/functions/fnc_cargoToPairs.sqf
Jacob Schmidt 48e3e15f71
Some checks failed
Build / Build (push) Failing after 51s
Initial Repo Setup
2025-01-01 14:30:34 -06:00

10 lines
191 B
Plaintext

#include "..\script_component.hpp"
private _array = [];
if (count _this > 1) then {
{
_array pushBack [_x, (_this select 1) select _forEachIndex];
} forEach (_this select 0);
};
_array;