Hi guys, I hope this is a simple scripting question. In my mission pbo i have an init.sqf. Inside that I run a script by calling the following: [] execVM "addons\test.sqf"; Here is the script while {true} do {
sleep 1;
diag_log visibleMap;
};
When I look at the log file, all I see is false getting printed every second, even when I open the map. What am I doing wrong? Thanks for the help. This is driving me crazy.