The mission script that i am using puts a marker on the map of where the mission is. the down side to this is if its already running when you join the server then you dont know where it is.
how would i go about making it refresh every 5 min so new players can see it also?
the code that places the marker is
//Created by Falcyn [QF] _MainMarker = createMarker ["MainMarker", Ccoords]; _MainMarker setMarkerColor "ColorGreen"; _MainMarker setMarkerShape "ELLIPSE"; _MainMarker setMarkerBrush "Grid"; _MainMarker setMarkerSize [175,175];
this is called by this bit of code
Ccoords = _coords; publicVariable "Ccoords"; [] execVM "debug\addmarkers.sqf";
does anyone know what i would need to add to make then get readded every 5 min

