ACE3/addons/hearing/functions/fnc_removeEarplugs.sqf

40 lines
933 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
2015-03-15 21:40:47 +00:00
* Author: Hope Johnson and commy2
* Takes out earplugs.
*
* Arguments:
* 0: Unit (player) <OBJECT>
* 1: Display hint <BOOL> (default false)
*
* Return Value:
2015-03-15 21:40:47 +00:00
* None
*
* Example:
* [ace_player, false] call ace_hearing_fnc_removeEarplugs
2015-03-15 21:40:47 +00:00
*
* Public: No
*/
params ["_player", ["_displayHint", false, [false]]];
if (!GVAR(EnableCombatDeafness)) exitWith {};
if !([_player, "ACE_EarPlugs"] call CBA_fnc_canAddItem) exitWith { // inventory full
[LELSTRING(common,Inventory_Full)] call EFUNC(common,displayTextStructured);
};
// Plugs already in and removing them.
_player addItem "ACE_EarPlugs";
2015-01-13 04:17:52 +00:00
_player setVariable ["ACE_hasEarPlugsIn", false, true];
if (_displayHint) then {
[localize LSTRING(EarPlugs_Are_Off)] call EFUNC(common,displayTextStructured);
};
//Force an immediate fast volume update:
[[true]] call FUNC(updateVolume);
[] call FUNC(updateHearingProtection);