mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
38 lines
924 B
Plaintext
38 lines
924 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Returns array of crew member objects.
|
|
*
|
|
* Arguments:
|
|
* 0: Vehicle <OBJECT>
|
|
* 1: Slot types filter (default: ["driver", "commander", "gunner", "turret", "cargo", "ffv"]) <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* Crew <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_vehicle", ["_types", ["driver", "commander", "gunner", "turret", "cargo", "ffv"]]];
|
|
|
|
private "_crew";
|
|
_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);
|
|
};
|
|
};
|
|
false
|
|
} count fullCrew _vehicle;
|
|
|
|
_crew
|