Hey guys,
I have my old debug monitor script, but I used to activate it in a custom Dayz_spaceinterrupt.sqf using this code from NoxSicarius:
Spoiler
if (_dikCode == 210) then {
if (isNil 'debugMonitor') then {
debugMonitor = true;
_nill = execvm "scripts\debug_monitor\debug_monitor.sqf";
} else {
debugMonitor = !debugMonitor;
hintSilent '';
_nill = execvm "scripts\debug_monitor\debug_monitor.sqf";
};
};
What would be the easiest way of activating that script now that epoch doesn't have dayz_spaceinterrupt.sqf anymore?
Thanks!