mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
593 B
Plaintext
22 lines
593 B
Plaintext
/*
|
|
* Author: jaynus
|
|
* Checks if the turret occupied by the given unit can lock a laser designator and select laser code.
|
|
*
|
|
* Argument:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return value:
|
|
* Has designator? <BOOL>
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
EXPLODE_1_PVT(_this,_unit);
|
|
|
|
// Get the player turret path
|
|
private ["_turret","_config","_turretConfig"];
|
|
_turret = [_unit] call EFUNC(common,getTurretIndex);
|
|
_config = configFile >> "CfgVehicles" >> typeOf vehicle _unit;
|
|
_turretConfig = [_config, _turret] call EFUNC(common,getTurretConfigPath);
|
|
|
|
getNumber (_turretConfig >> QGVAR(CanLockLaser)) > 0
|