ACE3/addons/hearing/functions/fnc_removeEarplugs.sqf
PabstMirror 9d128152a3 Hide earplug actions if setting disabled (#4913)
* Hide earplug actions if setting disabled

* Add lines that are new
2017-02-16 10:16:46 -06:00

37 lines
797 B
Plaintext

/*
* Author: Hope Johnson and commy2
* Takes out earplugs.
*
* Arguments:
* 0:Unit (player) <OBJECT>
*
* Return Value:
* None
*
* Example:
* [ace_player] call ace_hearing_fnc_removeEarplugs
*
* Public: No
*/
#include "script_component.hpp"
params ["_player"];
if (!GVAR(EnableCombatDeafness)) exitWith {};
if !(_player canAdd "ACE_EarPlugs") exitWith { // inventory full
[localize LSTRING(Inventory_Full)] call EFUNC(common,displayTextStructured);
};
// Plugs already in and removing them.
_player addItem "ACE_EarPlugs";
_player setVariable ["ACE_hasEarPlugsIn", false, true];
[localize LSTRING(EarPlugs_Are_Off)] call EFUNC(common,displayTextStructured);
//Force an immediate fast volume update:
[[true]] call FUNC(updateVolume);
[] call FUNC(updateHearingProtection);