/* * Author: Glowbal * Enables the mine detector * * Arguments: * 0: Unit * 1: detecter type * * Return Value: * None * * Example: * [UNIT, DETECTOR_CLASS_NAME] call ace_minedetector_fnc_enableDetector * * Public: No */ #include "script_component.hpp" params ["_unit", "_detectorType"]; _unit setvariable [format[QGVAR(enable_%1), _detectorType], true]; ["minedetector_enabled", [_unit, _detectorType]] call EFUNC(common,localEvent);