1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00
ACE3/addons/hearing/functions/fnc_hasEarPlugsIn.sqf
2015-08-13 23:42:20 +02:00

20 lines
340 B
Plaintext

/*
* 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
*/
#include "script_component.hpp"
params ["_unit"];
_unit getVariable ["ACE_hasEarPlugsin", false]