mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f69142dd45
* Hearing - New XEH, Fix dead effects, Medical var * Use setHearingCapability * Cleanup dead player vol update * Don't change global hearing in medical * Fix exitWith
31 lines
739 B
Plaintext
31 lines
739 B
Plaintext
/*
|
|
* Author: KoffeinFlummi, commy2, Ruthberg
|
|
* 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"
|
|
|
|
params ["_unit", "_damage"];
|
|
|
|
if (_unit != ACE_player) exitWith {};
|
|
|
|
TRACE_2("explosion near player",_unit,_damage);
|
|
|
|
private ["_strength"];
|
|
_strength = (0 max _damage) * 30;
|
|
if (_strength < 0.01) exitWith {};
|
|
|
|
// Call inmediately, as it will get pick up later anyway by the update thread
|
|
[_strength] call FUNC(earRinging);
|