ACE3/addons/hearing/functions/fnc_putInEarplugs.sqf

36 lines
714 B
Plaintext
Raw Permalink Normal View History

#include "..\script_component.hpp"
/*
* Author: Hope Johnson, commy2
2015-03-15 21:40:47 +00:00
* Puts in earplugs.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Display hint <BOOL> (default: false)
*
* Return Value:
2015-03-15 21:40:47 +00:00
* None
*
* Example:
* [player, false] call ace_hearing_fnc_putInEarplugs
2015-03-15 21:40:47 +00:00
*
* Public: No
*/
if (!GVAR(enableCombatDeafness)) exitWith {};
params ["_unit", ["_displayHint", false]];
// Plugs in inventory, putting them in
_unit removeItem "ACE_EarPlugs";
_unit setVariable ["ACE_hasEarPlugsIn", true, true];
if (_displayHint) then {
[LLSTRING(EarPlugs_Are_On)] call EFUNC(common,displayTextStructured);
};
// Force an immediate volume update
true call FUNC(updateVolume);
call FUNC(updateHearingProtection);