Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
Sign in to follow this  
tobmic

Player Marker

Recommended Posts

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

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

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

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
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";

};

Why the publicVariable?

Just set the variable on each client ;)

Share this post


Link to post
Share on other sites

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
Sign in to follow this  

×