2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Get the commander config of a vehicles turret.
|
2015-01-12 04:02:33 +00:00
|
|
|
*
|
2015-01-11 16:42:31 +00:00
|
|
|
* Argument:
|
|
|
|
* 0: vehicle type (String)
|
2015-01-12 04:02:33 +00:00
|
|
|
*
|
2015-01-11 16:42:31 +00:00
|
|
|
* Return value:
|
|
|
|
* Commander config (Config)
|
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
private ["_vehicle", "_config", "_turret"];
|
|
|
|
|
|
|
|
_vehicle = _this select 0;
|
|
|
|
|
|
|
|
_config = configFile >> "CfgVehicles" >> _vehicle;
|
2015-01-11 18:20:14 +00:00
|
|
|
_turret = [_vehicle] call FUNC(getTurretCommander);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-11 18:20:14 +00:00
|
|
|
[_config, _turret] call FUNC(getTurretConfigPath)
|