mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e535988479
* Hearing cleanup * Update fnc_updateHearingProtection.sqf * Fixes + tweaks * Update initSettings.inc.sqf * Update fnc_removeEarplugs.sqf
19 lines
714 B
Plaintext
19 lines
714 B
Plaintext
["ACE3 Equipment", QGVAR(putOrRemoveEarplugs), LLSTRING(PutOrRemoveEarplugs), {
|
|
// Conditions: specific
|
|
if !([ACE_player, objNull, ["isNotSwimming", "isNotInside", "isNotSitting"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
if (GVAR(enableCombatDeafness) && {!(ACE_player call FUNC(hasEarPlugsIn))} && {[ACE_player, "ACE_EarPlugs"] call EFUNC(common,hasItem)}) exitWith {
|
|
[ACE_player, true] call FUNC(putInEarPlugs);
|
|
|
|
true // return
|
|
};
|
|
|
|
if (GVAR(enableCombatDeafness) && {ACE_player call FUNC(hasEarPlugsIn)}) exitWith {
|
|
[ACE_player, true] call FUNC(removeEarPlugs);
|
|
|
|
true // return
|
|
};
|
|
|
|
false // return
|
|
}] call CBA_fnc_addKeybind; // UNBOUND
|