ACE3/addons/captives/functions/fnc_findEmptyNonFFVCargoSeat.sqf

40 lines
985 B
Plaintext
Raw Normal View History

2015-08-23 17:32:46 +00:00
/*
* 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
*/
2015-08-15 02:29:01 +00:00
#include "script_component.hpp"
params ["_vehicle"];
2015-08-23 17:32:46 +00:00
TRACE_1("params", _vehicle);
2015-08-15 02:29:01 +00:00
private _vehicleConfig = configFile >> "CfgVehicles" >> (typeOf _vehicle);
2015-08-15 02:29:01 +00:00
scopeName "main";
2015-08-15 02:29:01 +00:00
{
_x params ["_unit", "_role", "_cargoIndex", "_turretPath", "_isPersonTurret"];
if ((isNull _unit) && {_role == "cargo"} && {_cargoIndex > -1} && {!_isPersonTurret}) then {
[_cargoIndex, false] breakOut "main";
2015-08-15 02:29:01 +00:00
};
} forEach (fullCrew [_vehicle, "", true]);
2015-08-15 02:29:01 +00:00
{
_x params ["_unit", "_role", "_cargoIndex", "_turretPath", "_isPersonTurret"];
if ((isNull _unit) && {_cargoIndex > -1}) then {
[_cargoIndex, true] breakOut "main";
2015-08-15 02:29:01 +00:00
};
} forEach (fullCrew [_vehicle, "", true]);
2015-08-15 02:29:01 +00:00
[-1, false]