ACE3/addons/core/functions/fn_getConfigCommander.sqf
2015-01-11 10:20:14 -08:00

21 lines
401 B
Plaintext

/*
* Author: commy2
*
* Get the commander config of a vehicles turret.
*
* Argument:
* 0: vehicle type (String)
*
* Return value:
* Commander config (Config)
*/
private ["_vehicle", "_config", "_turret"];
_vehicle = _this select 0;
_config = configFile >> "CfgVehicles" >> _vehicle;
_turret = [_vehicle] call FUNC(getTurretCommander);
[_config, _turret] call FUNC(getTurretConfigPath)