ACE3/addons/common/functions/fnc_getConfigGunner.sqf
2015-01-12 19:22:58 +01:00

22 lines
443 B
Plaintext

/*
* Author: commy2
*
* Get the gunner config of a vehicles turret.
*
* Argument:
* 0: vehicle type (String)
*
* Return value:
* Gunner config (Config)
*/
#include "\z\ace\addons\common\script_component.hpp"
private ["_vehicle", "_config", "_turret"];
_vehicle = _this select 0;
_config = configFile >> "CfgVehicles" >> _vehicle;
_turret = [_vehicle] call FUNC(getTurretGunner);
[_config, _turret] call FUNC(getTurretConfigPath)