2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Get the vehicle cargo positions. Codrivers and ffv positions are not listed.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Vehicle type (String)
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* Vehicle cargo positions. (Array)
|
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 22:12:40 +00:00
|
|
|
private ["_config", "_cargo", "_codrivers", "_index"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_1(_vehicle);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_config = configFile >> "CfgVehicles" >> _vehicle;
|
|
|
|
|
|
|
|
_cargo = [];
|
|
|
|
_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-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
_cargo
|