mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a3aef6a066
Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
41 lines
922 B
Plaintext
41 lines
922 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Finds a free cargo seat, searching non FFV first
|
|
*
|
|
* Arguments:
|
|
* 0: The Vehicle <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* ARRAY [seat index <NUMBER>, is FFV <BOOL>]
|
|
*
|
|
* Example:
|
|
* [car1] call ACE_captives_fnc_findEmptyNonFFVCargoSeat
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_vehicle"];
|
|
TRACE_1("params",_vehicle);
|
|
|
|
scopeName "main";
|
|
|
|
private _seats = fullCrew [_vehicle, "", true];
|
|
reverse _seats;
|
|
|
|
{
|
|
_x params ["_unit", "_role", "_cargoIndex", "_turretPath", "_isPersonTurret"];
|
|
if (isNull _unit && {_role == "cargo"} && {_cargoIndex > -1} && {!_isPersonTurret}) then {
|
|
[_cargoIndex, false] breakOut "main";
|
|
};
|
|
} forEach _seats;
|
|
|
|
{
|
|
_x params ["_unit", "_role", "_cargoIndex", "_turretPath", "_isPersonTurret"];
|
|
if (isNull _unit && {_cargoIndex > -1}) then {
|
|
[_cargoIndex, true] breakOut "main";
|
|
};
|
|
} forEach _seats;
|
|
|
|
[-1, false]
|