ACE3/addons/hearing/functions/fnc_putInEarplugs.sqf

39 lines
877 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
2015-03-15 21:40:47 +00:00
* Author: Hope Johnson and commy2
* Puts in 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_putInEarplugs
2015-03-15 21:40:47 +00:00
*
* Public: No
*/
params ["_player", ["_displayHint", false, [false]]];
if (!GVAR(EnableCombatDeafness)) exitWith {};
// Plugs in inventory, putting them in
_player removeItem "ACE_EarPlugs";
2015-01-13 04:21:49 +00:00
_player setVariable ["ACE_hasEarPlugsIn", true, true];
if (_displayHint) then {
[localize LSTRING(EarPlugs_Are_On)] call EFUNC(common,displayTextStructured);
};
//Force an immediate fast volume update:
[[true]] call FUNC(updateVolume);
2019-03-11 02:42:08 +00:00
// No Earplugs in inventory, telling user
//[localize LSTRING(NoPlugs)] call EFUNC(common,displayTextStructured);
[] call FUNC(updateHearingProtection);