2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-03-15 21:40:47 +00:00
|
|
|
* Author: Hope Johnson and commy2
|
|
|
|
* Takes out earplugs.
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2017-06-08 13:31:51 +00:00
|
|
|
* 0: Unit (player) <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:
|
2020-01-09 20:40:34 +00:00
|
|
|
* [ace_player, false] call ace_hearing_fnc_removeEarplugs
|
2015-03-15 21:40:47 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
|
|
|
|
2020-01-09 20:40:34 +00:00
|
|
|
params ["_player", ["_displayHint", false, [false]]];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2017-02-16 16:16:46 +00:00
|
|
|
if (!GVAR(EnableCombatDeafness)) exitWith {};
|
|
|
|
|
2021-02-27 16:26:12 +00:00
|
|
|
if !([_player, "ACE_EarPlugs"] call CBA_fnc_canAddItem) exitWith { // inventory full
|
2021-03-04 17:43:11 +00:00
|
|
|
[LELSTRING(common,Inventory_Full)] call EFUNC(common,displayTextStructured);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-03-16 15:56:05 +00:00
|
|
|
// Plugs already in and removing them.
|
|
|
|
_player addItem "ACE_EarPlugs";
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 04:17:52 +00:00
|
|
|
_player setVariable ["ACE_hasEarPlugsIn", false, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2020-01-09 20:40:34 +00:00
|
|
|
if (_displayHint) then {
|
|
|
|
[localize LSTRING(EarPlugs_Are_Off)] call EFUNC(common,displayTextStructured);
|
|
|
|
};
|
2015-07-12 02:00:40 +00:00
|
|
|
|
|
|
|
//Force an immediate fast volume update:
|
|
|
|
[[true]] call FUNC(updateVolume);
|
2016-02-17 00:17:42 +00:00
|
|
|
|
|
|
|
[] call FUNC(updateHearingProtection);
|