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