mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9fbf256acd
Conflicts: addons/hearing/functions/fnc_putInEarplugs.sqf addons/interact_menu/ACE_Settings.hpp
29 lines
598 B
Plaintext
29 lines
598 B
Plaintext
/*
|
|
* Author: Hope Johnson and commy2
|
|
* Puts in earplugs.
|
|
*
|
|
* Arguments:
|
|
* 0:Unit (player) <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [ace_player] call ace_hearing_fnc_putInEarplugs
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_1(_player);
|
|
|
|
// Plugs in inventory, putting them in
|
|
_player removeItem "ACE_EarPlugs";
|
|
|
|
_player setVariable ["ACE_hasEarPlugsIn", true, true];
|
|
|
|
[localize LSTRING(EarPlugs_Are_On)] call EFUNC(common,displayTextStructured);
|
|
|
|
/*// No Earplugs in inventory, telling user
|
|
[localize LSTRING(NoPlugs)] call EFUNC(common,displayTextStructured);*/
|