tobmic 10 Posted February 26, 2010 How to get rid of the player marker that shows your position on the map. I make a mission where you need to do alot of pathfinding and when i click on the map i see my name there with Alpha. Anyway i can turn that feature off ? Share this post Link to post Share on other sites
Nicolai 10 Posted February 26, 2010 if you are using ACE2 you can turn it off in the userconfig. Not sure about vanilla arma2. Share this post Link to post Share on other sites
tobmic 10 Posted February 26, 2010 yeah i want to disable that one from the ACE feature so all players dont see their map markers in the map ..... How can i run it on the init.sqf ? Or is it enough when I edit the tracking.hpp server side ? ---------- Post added at 01:04 PM ---------- Previous post was at 12:23 PM ---------- i got it now i have put this in the init.sqf if (isServer) then { ace_sys_tracking_markers_enabled = false; publicVariable "ace_sys_tracking_markers_enabled"; }; Share this post Link to post Share on other sites
Nicolai 10 Posted February 26, 2010 if you want the markers to never show up, you can adjust the userconfig. Userconfig>Ace>ACE_Tracking.hpp>markersenabled= 0 Share this post Link to post Share on other sites
Deadfast 43 Posted February 26, 2010 i got it now i have put this in the init.sqfif (isServer) then { ace_sys_tracking_markers_enabled = false; publicVariable "ace_sys_tracking_markers_enabled"; }; Why the publicVariable? Just set the variable on each client ;) Share this post Link to post Share on other sites
Bon 12 Posted February 26, 2010 Deadfast, don't wonder, that's the way the ACE wiki tells him how to do ;) Share this post Link to post Share on other sites