fnc_emp_hitVehicle.sqf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. params["_ammo", "_vehicle"];
  2. private _config = configFile >> "CfgAmmo" >> _ammo;
  3. private _empEnabled = 10;
  4. if(isNumber (_config >> "rd501_emp_vehicle_duration")) then {
  5. _empEnabled = getNumber (_config >> "rd501_emp_vehicle_duration");
  6. };
  7. private _empDuration = 10;
  8. if(isNumber (_config >> "rd501_emp_vehicle_duration")) then {
  9. _empDuration = getNumber (_config >> "rd501_emp_vehicle_duration");
  10. };
  11. _config = configFile >> "CfgVehicles" >> (typeOf _vehicle);
  12. private _empResistancePercent = 0;
  13. if(isNumber (_config >> "rd501_emp_vehicle_resistance_percent")) then {
  14. _empResistancePercent = getNumber (_config >> "rd501_emp_vehicle_resistance_percent");
  15. _empResistancePercent = _empResistancePercent max 100;
  16. };
  17. private _effectiveDuration = _empDuration * (1 + ((- _empResistancePercent)/100));
  18. if(_effectiveDuration <= 1) exitWith { diag_log "[RD501][Vehicle EMP] Effective EMP Duration too low, not worth setting. Skipped." };
  19. [_vehicle] call rd501_fnc_emp_disableVehicle;
  20. [
  21. {
  22. params["_vehicle"];
  23. if(alive _vehicle) then {
  24. [_vehicle] call rd501_fnc_emp_enableVehicle;
  25. };
  26. },
  27. [_vehicle],
  28. _effectiveDuration
  29. ] call CBA_fnc_waitAndExecute;