2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Returns array of crew member objects.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Vehicle (Object)
|
|
|
|
* 1: Slot types. Can contain "driver", "commander", "gunner", "turret", "cargo" and "ffv". Case sensitive (Array)
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* Crew (Array)
|
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
private ["_crew"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_2(_vehicle,_types);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_crew = [];
|
|
|
|
|
|
|
|
// iterate through all crew members
|
|
|
|
{
|
|
|
|
// this unit is in a ffv position. check if we search for ffv.
|
|
|
|
if (_x select 4) then {
|
|
|
|
if ("ffv" in _types) then {
|
|
|
|
_crew pushBack (_x select 0);
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
// otherwise check if we search for that type. toLower, because fullCrew returns "driver" vs. "Turret".
|
|
|
|
if (toLower (_x select 1) in _types) then {
|
|
|
|
_crew pushBack (_x select 0);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
} forEach fullCrew _vehicle;
|
|
|
|
|
|
|
|
_crew
|