mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5d0f0c2896
Can't verify translations
30 lines
651 B
Plaintext
30 lines
651 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_1(_player);
|
|
|
|
if !(_player canAdd "ACE_EarPlugs") exitWith { // inventory full
|
|
[localize "STR_ACE_Hearing_Inventory_Full"] call EFUNC(common,displayTextStructured);
|
|
};
|
|
|
|
// Plugs already in and removing them.
|
|
_player addItem "ACE_EarPlugs";
|
|
|
|
_player setVariable ["ACE_hasEarPlugsIn", false, true];
|
|
|
|
[localize "STR_ACE_Hearing_EarPlugs_Are_Off"] call EFUNC(common,displayTextStructured);
|