ACE3/addons/hearing/functions/fnc_explosionNear.sqf
2015-03-15 16:46:06 -05:00

28 lines
664 B
Plaintext

/*
* Author: KoffeinFlummi, commy2
* Handles deafness due to explosions going off near the player.
*
* Arguments:
* 0: vehicle - Object the event handler is assigned to (player) <OBJECT>
* 1: damage - Damage inflicted to the object <NUMBER>
*
* Return Value:
* None
*
* Example:
* [clientExplosionEvent] call ace_hearing_fnc_explosionNear
*
* Public: No
*/
#include "script_component.hpp"
private ["_unit", "_damage", "_strength"];
_unit = _this select 0;
_damage = _this select 1;
_strength = (_damage * 2) min 1;
if (_strength < 0.01) exitWith {};
[{_this call FUNC(earRinging)}, [_unit, _strength], 0.2, 0] call EFUNC(common,waitAndExecute);