|
@@ -1,6 +1,6 @@
|
|
params["_vehicle"];
|
|
params["_vehicle"];
|
|
|
|
|
|
-if!(local _vehicle) exitWith { };
|
|
|
|
|
|
+if!(local _vehicle) exitWith { diag_log "[RD501][Vehicle EMP] Exiting disable because not local"; };
|
|
diag_log format["[RD501][Vehicle EMP] Disabling Vehicle '%1'", _vehicle];
|
|
diag_log format["[RD501][Vehicle EMP] Disabling Vehicle '%1'", _vehicle];
|
|
|
|
|
|
_vehicle allowCrewInImmobile true;
|
|
_vehicle allowCrewInImmobile true;
|
|
@@ -17,6 +17,17 @@ _vehicle lock 2;
|
|
|
|
|
|
(getAllHitPointsDamage _vehicle) params [["_allHitPoints", []]];
|
|
(getAllHitPointsDamage _vehicle) params [["_allHitPoints", []]];
|
|
|
|
|
|
|
|
+_fnc_matchesAnyTurret = {
|
|
|
|
+ params["_hitpoint"];
|
|
|
|
+ private _found = false;
|
|
|
|
+ {
|
|
|
|
+ if(_hitpoint find _x != -1) exitWith {
|
|
|
|
+ _found = true;
|
|
|
|
+ };
|
|
|
|
+ } forEach ["turret","Turret","vez","Vez","zbran","Zbran","gun","Gun"];
|
|
|
|
+ _found
|
|
|
|
+};
|
|
|
|
+
|
|
{
|
|
{
|
|
private _isEngineLower = (_x find "engine") != -1;
|
|
private _isEngineLower = (_x find "engine") != -1;
|
|
private _isEngineUpper = (_x find "Engine") != -1;
|
|
private _isEngineUpper = (_x find "Engine") != -1;
|
|
@@ -25,9 +36,8 @@ _vehicle lock 2;
|
|
diag_log format["[RD501][Vehicle EMP] Damaging %1", _x];
|
|
diag_log format["[RD501][Vehicle EMP] Damaging %1", _x];
|
|
};
|
|
};
|
|
|
|
|
|
- private _isTurretLower = (_x find "turret") != -1;
|
|
|
|
- private _isTurretUpper = (_x find "Turret") != -1;
|
|
|
|
- if(_isEngineLower || _isEngineUpper) then {
|
|
|
|
|
|
+ private _isTurret = [_x] call _fnc_matchesAnyTurret;
|
|
|
|
+ if(_isTurret) then {
|
|
_vehicle setHitPointDamage [_x, 1, true];
|
|
_vehicle setHitPointDamage [_x, 1, true];
|
|
diag_log format["[RD501][Vehicle EMP] Damaging %1", _x];
|
|
diag_log format["[RD501][Vehicle EMP] Damaging %1", _x];
|
|
};
|
|
};
|