2015-01-17 22:38:13 +00:00
|
|
|
// by commy2
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-07 17:38:19 +00:00
|
|
|
// fixes laser when being captured. Needed, because the selectionpsoition of the right hand is used
|
|
|
|
["SetHandcuffed", {if (_this select 1) then {(_this select 0) action ["GunLightOff", _this select 0]};}] call EFUNC(common,addEventHandler);
|
|
|
|
|
2015-01-18 02:48:44 +00:00
|
|
|
if !(hasInterface) exitWith {};
|
|
|
|
|
2015-01-17 22:38:13 +00:00
|
|
|
GVAR(nearUnits) = [];
|
|
|
|
|
|
|
|
// @todo. Maybe move to common?
|
|
|
|
[{
|
|
|
|
private "_nearUnits";
|
2015-01-18 02:48:44 +00:00
|
|
|
_nearUnits = nearestObjects [positionCameraToWorld [0,0,0], ["CAManBase"], 50];
|
2015-01-17 22:38:13 +00:00
|
|
|
|
|
|
|
if (count _nearUnits > 10) then {
|
|
|
|
_nearUnits resize 10;
|
|
|
|
};
|
|
|
|
|
|
|
|
GVAR(nearUnits) = _nearUnits;
|
|
|
|
|
|
|
|
} , 5, []] call CBA_fnc_addPerFrameHandler;
|
|
|
|
|
|
|
|
addMissionEventHandler ["Draw3D", {
|
|
|
|
call FUNC(onDraw);
|
|
|
|
}];
|