ACE3/addons/common/functions/fnc_getConfigCommander.sqf

22 lines
414 B
Plaintext
Raw Normal View History

/*
* Author: commy2
*
* Get the commander config of a vehicles turret.
*
* Argument:
2015-03-25 21:50:28 +00:00
* 0: vehicle (Object)
*
* Return value:
* Commander config (Config)
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-05-14 18:06:06 +00:00
private ["_config", "_turret"];
2015-05-14 18:06:06 +00:00
PARAMS_1(_vehicle);
2015-03-25 21:50:28 +00:00
_config = configFile >> "CfgVehicles" >> typeOf _vehicle;
2015-01-11 18:20:14 +00:00
_turret = [_vehicle] call FUNC(getTurretCommander);
2015-01-11 18:20:14 +00:00
[_config, _turret] call FUNC(getTurretConfigPath)