stun.sqf 701 B

1234567891011121314151617181920
  1. _onHit = {
  2. params ["_unit", "_source", "_damage", "_instigator"];
  3. {
  4. private _mag = currentMagazine _source;
  5. private _ammo = (configFile >> "CfgMagazines" >> _mag >> "ammo") call BIS_fnc_getCfgData;
  6. private _stunDuration = (configFile >> "CfgAmmo" >> _ammo >> "RD501_stunDuration") call BIS_fnc_getCfgData;
  7. if (_stunDuration > 0.0) then
  8. {
  9. ["ace_captives_setSurrendered" ,[_unit, true]] call CBA_fnc_globalEvent;
  10. [{
  11. ["ace_captives_setSurrendered", [_this select 0, false]] call CBA_fnc_globalEvent;
  12. }, [_unit], _stunDuration] call CBA_fnc_waitAndExecute;
  13. };
  14. } remoteExec ['call', _instigator];
  15. };
  16. _handler = ["CAManBase", "Hit", _onHit] call CBA_fnc_addClassEventHandler;