I have a issue that my radio trigger command onmapsingleclick exec global,
i want only the team leader to open the map with onsinglemapclick, but it exec on all machines..
Note: if i exec the command on debug console local it work.
==============
Radio Alpha
Condition: this
On act: null = [] execvm "scripts\marker1.sqf";
marker1.sqf
===================
deleteMarker "m1";
_marker1 = createMarkerLocal ["m1",[0,0,0]];
_marker1 setMarkertype "hd_dot";
_marker1 setMarkerColor "ColorRed";
_marker1 setMarkerText "Alvo 1";
openMap true;
onMapSingleClick "openMap false; 'm1' setMarkerPos _pos; onMapSingleClick ''; true;";