ACE3/addons/minedetector/functions/fnc_isDetectorEnabled.sqf
2016-05-03 22:37:02 +02:00

22 lines
386 B
Plaintext

/*
* Author: Glowbal
* Check if the mine detector is enabled
*
* Arguments:
* 0: detecter type <STRING>
*
* Return Value:
* None
*
* Example:
* ["example"] call ace_minedetector_fnc_[functionName]
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit", "_detectorType"];
alive _unit && {(_unit getvariable [format[QGVAR(enable_%1), _detectorType], false])};