ACE3/addons/common/functions/fnc_monitor.sqf
2015-05-14 20:06:06 +02:00

12 lines
227 B
Plaintext

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