mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
20 lines
344 B
Plaintext
20 lines
344 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Check if the unit has earplugs put in.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit (player) <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Have Earplugs in <BOOL>
|
|
*
|
|
* Example:
|
|
* [ace_player] call ace_hearing_fnc_hasEarPlugsIn
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_unit"];
|
|
|
|
_unit getVariable ["ACE_hasEarPlugsin", false]
|