2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2024-05-29 17:01:39 +00:00
|
|
|
* Author: Hope Johnson, commy2
|
2015-03-15 21:40:47 +00:00
|
|
|
* Puts in earplugs.
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2024-05-29 17:01:39 +00:00
|
|
|
* 0: Unit <OBJECT>
|
2020-01-09 20:40:34 +00:00
|
|
|
* 1: Display hint <BOOL> (default: false)
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-03-15 21:40:47 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2024-05-29 17:01:39 +00:00
|
|
|
* [player, false] call ace_hearing_fnc_putInEarplugs
|
2015-03-15 21:40:47 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
|
|
|
|
2024-05-29 17:01:39 +00:00
|
|
|
if (!GVAR(enableCombatDeafness)) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2024-05-29 17:01:39 +00:00
|
|
|
params ["_unit", ["_displayHint", false]];
|
2017-02-16 16:16:46 +00:00
|
|
|
|
2015-03-16 15:56:05 +00:00
|
|
|
// Plugs in inventory, putting them in
|
2024-05-29 17:01:39 +00:00
|
|
|
_unit removeItem "ACE_EarPlugs";
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2024-05-29 17:01:39 +00:00
|
|
|
_unit setVariable ["ACE_hasEarPlugsIn", true, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2020-01-09 20:40:34 +00:00
|
|
|
if (_displayHint) then {
|
2024-05-29 17:01:39 +00:00
|
|
|
[LLSTRING(EarPlugs_Are_On)] call EFUNC(common,displayTextStructured);
|
2020-01-09 20:40:34 +00:00
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2024-05-29 17:01:39 +00:00
|
|
|
// Force an immediate volume update
|
|
|
|
true call FUNC(updateVolume);
|
2015-07-12 02:00:40 +00:00
|
|
|
|
2024-05-29 17:01:39 +00:00
|
|
|
call FUNC(updateHearingProtection);
|