hellstorm77 2 Posted May 10, 2014 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
Väinämöinen 0 Posted May 10, 2014 It's discussed here: http://forums.bistudio.com/showthread.php?159805-Disable-Map-Marker You could also delete all created markers - eg. create a list of valid markers and delete all invalid markers: https://community.bistudio.com/wiki/allMapMarkers deleteMarker deleteMarkerLocal regards.Väinämöinen Share this post Link to post Share on other sites
hellstorm77 2 Posted May 10, 2014 yeah its discussed there but i cant get it to work Share this post Link to post Share on other sites
f2k sel 164 Posted May 10, 2014 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
hellstorm77 2 Posted May 14, 2014 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
f2k sel 164 Posted May 14, 2014 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
hellstorm77 2 Posted May 14, 2014 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