Jump to content

Recommended Posts

is there away to disable map marker so people cant place markers down on the map

Share this post


Link to post
Share on other sites

To disable shift marker you need onMapSingleClick "true";

Previously this OnMapSingleClick ""; worked but then they added the true/false variable as it was always left disabled when using onmapsingleclick.

Share this post


Link to post
Share on other sites

it didn't work.. when i go in to the mission i can still place markers on the map

Share this post


Link to post
Share on other sites

it will only stop the shifted map marker, the double click marker the editable one still works. I haven't see anyone disable that yet.

Share this post


Link to post
Share on other sites

problem solved by fluit

delete_markers.sqf

if (!isServer) then {

while {true} do {

	{  
           private "_a";
           _a = toArray _x;
           _a resize 15;
            if (toString _a == "_USER_DEFINED #") then {
                   deleteMarker _x;
            }              
       } forEach allMapMarkers;
       sleep 1;
};

};

place _null = [] execVM "delete_markers.sqf"; in the init.sqf

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×