ACE3/addons/common/functions/fnc_monitor.sqf
2015-01-13 20:56:02 +01:00

12 lines
219 B
Plaintext

// by commy2
#include "script_component.hpp"
terminate (missionNamespace getVariable [QGVAR(MonitorFnc), scriptNull]);
GVAR(MonitorFnc) = _this spawn {
waitUntil {
hintSilent str (call _this);
false
};
};