ACE3/addons/common/functions/fnc_getVehicleCodriver.sqf

32 lines
705 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: commy2
* Get the vehicle codriver positions.
*
2015-09-21 11:08:10 +00:00
* Arguments:
* 0: Vehicle type <STRING>
*
* Return Value:
* Vehicle codriver positions <ARRAY>
*
* Example:
* ["car"] call ace_common_fnc_getVehicleCodriver
*
2015-09-21 11:08:10 +00:00
* Public: Yes
*/
params [["_vehicle", objNull, [objNull]]];
private _config = configFile >> "CfgVehicles" >> _vehicle;
private _cargo = [];
private _codrivers = getArray (_config >> "cargoIsCoDriver");
for "_index" from 0 to (getNumber (_config >> "transportSoldier") - 1) do {
2015-05-14 18:06:06 +00:00
if (_index in _codrivers && {_vehicle isKindOf "Car"} && {!(_vehicle isKindOf "Wheeled_APC_F")}) then {
_cargo pushBack _index;
};
};
2015-09-21 11:08:10 +00:00
_cargo