2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Get the gunner config of a vehicles turret.
|
2015-01-12 04:02:33 +00:00
|
|
|
*
|
2015-09-20 21:18:51 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: vehicle <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Gunner config <CONFIG>
|
2015-01-12 04:02:33 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [car] call ace_common_fnc_getConfigGunner
|
|
|
|
*
|
2015-09-20 21:18:51 +00:00
|
|
|
* Public: Yes
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-20 21:18:51 +00:00
|
|
|
params ["_vehicle"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _config = configFile >> "CfgVehicles" >> typeOf _vehicle;
|
2015-12-12 16:26:47 +00:00
|
|
|
private _turret = _vehicle call FUNC(getTurretGunner);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-20 21:18:51 +00:00
|
|
|
[_config, _turret] call FUNC(getTurretConfigPath) // return
|