2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-03-15 21:40:47 +00:00
|
|
|
* Author: Hope Johnson and commy2
|
|
|
|
* Puts in earplugs.
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-03-15 21:40:47 +00:00
|
|
|
* 0:Unit (player) <OBJECT>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-03-15 21:40:47 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [ace_player] call ace_hearing_fnc_putInEarplugs
|
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-14 01:41:53 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-08-13 21:42:20 +00:00
|
|
|
params ["_player"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-03-16 15:56:05 +00:00
|
|
|
// Plugs in inventory, putting them in
|
|
|
|
_player removeItem "ACE_EarPlugs";
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 04:21:49 +00:00
|
|
|
_player setVariable ["ACE_hasEarPlugsIn", true, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-28 19:59:04 +00:00
|
|
|
[localize LSTRING(EarPlugs_Are_On)] call EFUNC(common,displayTextStructured);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-07-12 02:00:40 +00:00
|
|
|
//Force an immediate fast volume update:
|
|
|
|
[[true]] call FUNC(updateVolume);
|
|
|
|
|
2015-06-03 13:29:38 +00:00
|
|
|
/*// No Earplugs in inventory, telling user
|
2015-05-28 19:59:04 +00:00
|
|
|
[localize LSTRING(NoPlugs)] call EFUNC(common,displayTextStructured);*/
|
2016-02-17 00:17:42 +00:00
|
|
|
|
|
|
|
[] call FUNC(updateHearingProtection);
|